Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
jassie
Constraint Violating Yak Guru
332 Posts |
Posted - 2013-12-26 : 11:54:39
|
In an SSRS 2012, I am going to have some selected colunmns set as invisibile while the ssrs 2012 report is running. However when the report is exported only to excel and csv files, I want those invisible columns to be included in the export. What I have set so far is:set the columns's visibility property. =IIF(Globals!RenderFormat.Name="EXCEL",false,true) And then set this column's DataElementOutput property to "Output".The above works fine for excel and does give me the output data for CSV. The problem is the column header for the csv file is also exported like it is a separate data column.Basically the csv file looks like the following:textbox23 custnamecustomerName Doug SmithThus can you tell me how to export a csv file that will not display the csv column header textbox? |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2013-12-26 : 12:57:20
|
Is it a requirement that you need to do this using ssrs? If not, there are much easier methods to export to csv like bcp,opnerowset etc------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/https://www.facebook.com/VmBlogs |
|
|
jassie
Constraint Violating Yak Guru
332 Posts |
Posted - 2013-12-26 : 16:35:28
|
Yes this is a requirement that I am required to have in SSRS. The users will be running the export to CSV files. |
|
|
|
|
|