SSRS BIDS expression Show / hide image based on passed parameter

Is it possible that the image was accessible if a certain field is selected, in this case the parameter is @employeename, I want the image that was placed in the report to be displayed if the specific value is true.

What is the syntax, the field I'm doing field in is useeename

enter image description here

+4
source share
1 answer

The expression will look something like this:

=IIf(Fields!employeename.Value = "Something", True, False) 

You may have a "Something" hard-coded value or other parameter. The main thing to remember is access to the .Value property.

+4
source

Source: https://habr.com/ru/post/1397064/


All Articles