Link to home
Start Free TrialLog in
Avatar of vbnetcoder
vbnetcoder

asked on

I want to give a text box values based on the value a field. How would i do so?

For example if Field!PONumber  contains a c i want it to show one set of text otherwise i want it to show other text
Avatar of Phillip Burton
Phillip Burton

=IIf(InStr(Field!PONumber.Value, "c") > 0, "Yes","No")
ASKER CERTIFIED SOLUTION
Avatar of Haris Dulic
Haris Dulic
Flag of Austria image

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
Avatar of vbnetcoder

ASKER

ty