What I'm trying to do is when the report is exported to either Excel or MHTML some things show up that weren't there before. (Instructions, things we need to send to others in the company) Right now what I have written works on all the objects when exporting to excel.
=IIF(Globals!RenderFormat.Name = "EXCELOPENXML" OR Globals!RenderFormat.Name = "MHTML" AND Parameters!format.Value = 2, False, True)
So this instruction isn't visible when running the report, only when it is exported to Excel and the parameter value I have is also selected. However, when the parameter values is correct and I try to export to MHTML everything exports, but that data stays not visible. This happens for every data type other then "EXCELOPENXML". I have done tests just with a single document with simple expressions, and the conditional render formatting always works with EXCELOPENXML but all the other extensions just ignore it.
Any ideas?