Conditionan Action in SSRS
Posted
by Jesse
on Stack Overflow
See other posts from Stack Overflow
or by Jesse
Published on 2010-03-17T14:27:56Z
Indexed on
2010/03/17
14:31 UTC
Read the original article
Hit count: 372
I want my textbox to have an action ONLY if the condition is true, otherwise no action. This is what I have as my current action expression for going to another report:
=IIf(Fields!MyTextbox.Value = "0", "Report2","")
This does not produce my desired result. It gives the textbox an action regardless of the condition result. Is there a 'No Action' or 'Cancel Action' value?
© Stack Overflow or respective owner