Hi all,
i got the task to hide some columns on a report print out.
So i do some research and found the Built-in Field RenderFormat.
https://docs.microsoft.com/en-us/sql/reporting-services/report-design/built-in-collections-built-in-globals-and-users-references-report-builder
I go into VS, right click on the column -> Column Visibility -> choose "show or hide based on an expression" -> write this expression:
=IIF(Globals!RenderFormat.Name ="WORD" OR Globals!RenderFormat.Name="XML" OR
Globals!RenderFormat.Name="CSV" OR Globals!RenderFormat.Name="TIFF" OR
Globals!RenderFormat.Name="PDF", Globals!RenderFormat.Name="MHTML" OR
Globals!RenderFormat.Name="EXCEL",true,false)
and try to deploy.
VS shows this error message:

Have anybody an idea why i can't use this Built-in Field?
Thanks in advance.
*This post is locked for comments
I have the same question (0)