I'm a webmaster and i created a form that emails it's data to us and saves a record of it on the server. This record is a tab delimited file that we'd like to import into excel to see who was ordering what, how often ect...
The last item of the form is a textarea for "comments". People often hit enter to seperate their comments into paragraphs and that's where i run into a problem. I want excel to keep the comment together in the same cell. But when we import the tab delimited file into excel, excel starts a new row with every enter, thereby spliting up the comment. To solve this i programmed the form handler to enclose the comments in double quotes. But excell still splits up the comments across rows when we import the file.
How do i get excell to keep the comments in the same cell? I've tried setting that column of cells to "text wrap" before importing, but that didn't help.
The last item of the form is a textarea for "comments". People often hit enter to seperate their comments into paragraphs and that's where i run into a problem. I want excel to keep the comment together in the same cell. But when we import the tab delimited file into excel, excel starts a new row with every enter, thereby spliting up the comment. To solve this i programmed the form handler to enclose the comments in double quotes. But excell still splits up the comments across rows when we import the file.
How do i get excell to keep the comments in the same cell? I've tried setting that column of cells to "text wrap" before importing, but that didn't help.