Hi,
I have a simple table in SSRS which I am using to create a CSV report. The output looks like:
a,b,c 1,2,3 4,5,6where a,b,c are the column headers. Now my client requires a footer row saying how many records are in the file. However if I add a row to my table with the required fields in, the output becomes:
a,b,c,records 1,2,3,2 4,5,6,2instead of:
a,b,c 1,2,3 4,5,6 records,2Does anyone know how I can achieve the desired effect?