user961714
user961714

Reputation: 731

Column Visibility when Exporting to CSV

Can someone tell me why this doesn't work?

I have the "Column Visibility" set to "Show or hide based on an expression"

The expression is the following:

=IIF(Globals!RenderFormat.Name = "CSV",True,False)

Save to CSV, Column shows.

Upvotes: 3

Views: 377

Answers (1)

Registered User
Registered User

Reputation: 8395

Format options such as expressions on visibility are ignored for CSV rendering methods. CSV rendering methods are essentially data flows, so you can suppress elements that you don't want to include in CSV files by changing the DataElementOutput from Auto, the default value, to NoOutput.

Upvotes: 2

Related Questions