Gravity Forms doesn't export to an Excel spreadsheet file. It exports to a CSV file, which is a comma delimited file. You then import that CSV file into Excel, Google Spreadsheets, or any other application that supports CSV import.
CSV is a comma delimited list of the field values for that entry. The field names are output as the CSV headers for each column. When you import it into Excel or Google Spreadsheets it does create a column for each field.
There isn't really much to see as far as an example goes. A CSV file basically looks like this:
form field name1, form field name2, form field name3, form field name4
field value1, field value2, field value4, field value 4
field value1, field value2, field value4, field value 4
field value1, field value2, field value4, field value 4
field value1, field value2, field value4, field value 4
When you import the CSV into Excel or other Spreadsheet app it then creates a columns and rows out of the data above. Each line is a row, each column is the list of values delimited by a comma. Excel, Google Spreadsheets, etc. knows how to import a CSV so that it takes this data and produces a spreadsheet out of it with columns, rows and values.
Posted 13 years ago on Monday November 21, 2011 |
Permalink