Auto fill

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.
 
M

Marshall Barton

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")
 
Top