I am using ssrs 2005. I have a report with two tables.
table1
col11 col12 col13
1 2 3
table2
col21 col22 col23
a b c
d e f
g h i
It renders well on the report. When I export it to CSV, its bizarre...it exports this way
table1,col11,col12,col13,table2,col21,col22,col23 - The headers on the first line
1,2,3,a,b,c - The first row of both tables on the second line
d,e,f - The remaining rows of the secomd table
g,h,i
I tried many config/display settings but I cannot get it to work.
I need the csv to be just like the report display
table1,col11,col12,col13 - The headers on the first line
1,2,3 - The detail rows under the headers
table2,col21,col22,col23 - The second table below the first table
a,b,c
d,e,f
g,h,i
I just need the two tables separate in the CSV. Right now the first row of both tables display across and the remaining rows appear below.
Thanks in advance