Link to home
Start Free TrialLog in
Avatar of vbnetcoder
vbnetcoder

asked on

Show/Hide table based on expression

i want to show or hide a table based on an expression.  This is not working for me.  It is ALWAYS showing

=IIf(InStr(First(Fields!TransmittalNumber.Value, "DataSet1"), "P") > 1, True,False)

WHY???
Avatar of vbnetcoder
vbnetcoder

ASKER

ACtually, I am using this:

=IIf(InStr(Fields!TransmittalNumber.Value, "C") > 1, True,False)
ASKER CERTIFIED SOLUTION
Avatar of Phillip Burton
Phillip Burton

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ty