csv is ok .. but .. I prefer tab delimited ..
one can save it from Excel.
I then take the file .. let’s call it tbl
perl -pi -ne ‘s/n/n#n/g’ tbl
perl -pi -ne ‘s/t/n/g’ tbl
I then cut and paste a header from another table ..
kind of manual .. but .. it’s pretty quick and easy ..
One common problem is that people will insert spaces in Excel and not know it..
Dennis