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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top