In an ssrs 2012 report, I want to be able to export all the data to a csv (comma delimited) file that only contains the detailed row information. I do not want to export any rows that contain header data information.Right now the export contains header row information and detail row information. The header row information exists for the PDF exports.To have the header row not exist on CSV exports, I have tried the following options on the tablix with the header row information with no success: 1. = iif(Mid(Globals!RenderFormat.Name,1,5)<>"EXCEL",false,true),2. = iif(Mid(Globals!RenderFormat.Name,1,3)="PDF",false,true),3. The textboxes that contain the column headers, the dataelelementoutput=auto and the text boxes that contain the actual data, I set the dataelelementoutput=output.Basically I need the tablix that contains the header information not to appear when the export is for a csv file. However when the export is for the detail lines for the csv export, I need that tablix to show up.Thus can you tell me and/or show me code on how to solve this problem?
↧