If, then

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In a report if a control field reads "90806, and I want this to read "Child" instead, how do I do this

Thank you.
 
In a report if a control field reads "90806, and I want this to read "Child" instead, how do I do this?

Thank you.

Set the Control Source of the textbox to

IIF([fieldname] = "90806", "Child", [fieldname])
 
Back
Top