I don't really have a copy of Excel to see how to open the CSV file.
Maybe Importing it would do (instead of opening).
Because the file is Tab separated field and not comma, this might be an issue to excel. (on OpenOffice after renaming to csv it works fine).
To convert it is quite simple:
| Code: |
$ perl -pe 's@\t@,@g' forme.csv
|
-rsd