Is it possible to show and hide images based on a value in another field in reports online? I keep getting an error "This report can’t upload because there are restrictions with SQL Server Reporting Services reports when Report Definition Language (RDL) Sandboxing is enabled."
I am using VS2012
The image is in the header and some text in the footer. I am using the following expression
show Image 1
=iIF(Fields!pricelevelid.Value LIKE "*something*", true, false)
show Image 2
=iIF(Fields!pricelevelid.Value LIKE "*something*", false, true)
If I remove these expressions report uploads fine.
*This post is locked for comments