Help

IF formula when field "contains" select text

Topic Labels: Formulas
16412 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Megan_Pratt
5 - Automation Enthusiast
5 - Automation Enthusiast

I have a Multiple Select field that has several choices, like Camp, Membership, Donation. I want to create a Formula field that says Member or Nonmember. I know how to make an IF question for blank fields, but not for a specific Select from a field. I tried just IF(Field = “Member”), “Member”, “Nonmember”), but that doesn’t work.
Thanks.

2 Replies 2

Use the FIND() function for this use case:

IF(FIND("Member", Field), "Member", "Nonmember")
Philo
5 - Automation Enthusiast
5 - Automation Enthusiast

Hiyya, i found this thread as I was also searching for an IF formula that pulls up specific text from a cell.

 
IF({FIELD}="SPECIFIC TEXT", "CERTAIN VALUE")