[Date Prev][Date Next][Thread Prev][Thread Next][Interchange by date
][Interchange by thread
]
[ic] what spreadsheet program in windows to use
> we use windows xp and excel exp 2002 and its not working right. it puts
> little squares in teh areas and interchange gives a fatal error when
> loading a tab text file which was made with excel.
>
> what spreadsheet program should we use?
Export the file as tab-delimitd. After that remove the carrige returns with
the following command on your linux-box:
tr -d '\015' < old_file.txt > new_file.txt
Rene