Help me sort out my surveys please!
November 3, 2007 1:14 PM Subscribe
i have a whole bunch of plain text emails that I would like to amalgamate into one spreadsheet. Is this possible - easily?
I have collected some survey data through a
simple php script and collected a whole bunch of email answers. Unfortunately (or fortunately depending upon how you look at it) I have far more survey responses than I thought I would get.
Can I somehow automate the process of entering all of this data into an Excel spreadsheet?
posted by chairish to computers & internet (6 answers total) 2 users marked this as a favorite
- Convert them all into one big comma-separated values file.
- Name that file with the extension "csv".
- Open it with Excel.
- If desired, save it in Excel's native format (this is not really necessary, but will allow you to use more of Excel's functionality).
In the first step, make sure that you follow the rules for quoting values properly (to make sure that embedded commas and such aren't interpreted as separators). A general overview can be found here.posted by Flunkie at 1:23 PM on November 3, 2007