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.
Page 1 / 1
Use the FIND()
function for this use case:
IF(FIND("Member", Field), "Member", "Nonmember")
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")
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.