I am trying to export CSV in SSRS 2008. I am getting my data, but on top of that the column names are being appended to the front of each row.
So if my report is this:
ColA ColB ColC
1 1 1
2 2 2
3 3 3
My CSV Export looks like this:
ColA,ColB,ColC,1,1,1
ColA,ColB,ColC,2,2,2
ColA,ColB,ColC,3,3,3
Where is this coming from? I have never had this issue in an SSRS report before.I have tried setting some of the output properties for these columns, but when I do that, I lose the entire column.