Auto fill

  • Thread starter Thread starter ThomP
  • Start date Start date
T

ThomP

I have a table (and form) that list Organs that have cancer. I want fill a
text box with the word "Yes" if the Organ is Brain, or Lung.

Any ideas?

Thanks in advance.
 
ThomP said:
I have a table (and form) that list Organs that have cancer. I want fill a
text box with the word "Yes" if the Organ is Brain, or Lung.


Use a text box expression like:

=IIf(Organ = "Brain" OR Organ = "Lung", "Yes", "No")
 
Back
Top