Hide / Show Text Field Elements Depending On Export Format

I need to hide the text box when exporting to excel format. I am using SRSS 2008, not (SRSS 2008 R2),

I Find the hidden property of the text field to hide, and write the following expression:

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

But in this version of Reporting Services the "RenderFormat.Name" option does not appear, does anyone know another way to do this in SRSS 2008?

+3
source share
1 answer

Global variables representing rendering formats were a new feature of SSRS 2008 R2 . Prior to R2, there was no / there was no way for the report to find out which format the user selected for export.

, ( R2) . , EXCEL, , .

+2

All Articles