Does anybody know why .ExportToCSV() exports data in the following format?
header1,header2,header3,
r1value1,r1value2,r1value3,
r2value1,r2value2,rwvalue3,
as opposed to
header1,header2,header3
r1value1,r1value2,r1value3
r2value1,r2value2,rwvalue3
Notice how the second set of value doe not have the comma at the end of each line, which is what I was expecting. Is there any way to not append the comma to the end of each line?
Any help would be greatly appreciated. Thank you!
header1,header2,header3,
r1value1,r1value2,r1value3,
r2value1,r2value2,rwvalue3,
as opposed to
header1,header2,header3
r1value1,r1value2,r1value3
r2value1,r2value2,rwvalue3
Notice how the second set of value doe not have the comma at the end of each line, which is what I was expecting. Is there any way to not append the comma to the end of each line?
Any help would be greatly appreciated. Thank you!