Posted 22 August 2022, 12:25 am EST
In MS SSRS you could use RenderFormat to hide particular objects of your report when exported to specific formats. For instance if I wanted a row to show on normal rendering, but not show when exported to Excel, I would set the row visibility expression to ``` =not Globals!RenderFormat.Name = “EXCEL” AND not Globals!RenderFormat.Name = “EXCELOPENXML”
This does not appear to be functional in ActiveReports.NET however. Even if I just try and display the RenderFormat name as a textbox value, it returns blank.
Is there some kind of alternative method I can use in ARN that would allow me to show/hide certain elements depending on export format?