Forum Discussion

DerMainzer's avatar
DerMainzer
Resolver I
3 years ago
Solved

Show/Hide Textfield and Parameters

Good Morning,   I have a rectangle that should be shown/hidden (also other parametes within it) based on one Paramter I choose at first.   Let's say I have a parameter that's called ART and the v...
  • KVRKarthik's avatar
    3 years ago

    Hi,
    Follow the steps below to resolve this requirement.

    1. Go to rectangle properties.

    2. Go to "Visibility" window.

    3. Check the option "Show or hide based on an expression."

    4. Click on expression builder "fx" button.

    5. In the window use IIF function to fulfill the requirement: = IIF(Parameters!ART.Value = "Protocol", False, True).

    This hides the rectangle and once rectangle is hidden, data in it will be hidden too.

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.