• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Exporting excel to csv

xchangx

Golden Member
I have a table of data I need to export to a comma delimited file, but need to include the header with each value.

for ex; header1 value, header2 value, header3 value.

header1 header2 header3
value value value
value value value
value value value

When you export to csv it puts the header at the top, but doesn't include it with the values.

Any ideas?

Thanks!
 
Definitely not a csv format. Like nickbits said, you'd have to do a vba macro to write to an output file.
 
CSV is plain text format, there's no formatting on it. Contents are separated by commas and line return designates new row. That's it.
 
You can create a new sheet with formulas, like =Sheet1!A$1&" "&Sheet1!A2. Replace "Sheet1" with the proper name, fill that through the rest of the new sheet, and you should be able to save the new sheet as a CSV.
 
CSV is plain text format, there's no formatting on it. Contents are separated by commas and line return designates new row. That's it.

At the most basic level sure, but when most people speak about a CSV file they're talking about a file that's laid out like a spreadsheet with each column separated by commas with no labels mixed in with the data.
 
Back
Top