Feb 11, 2020 01:17 PM
Greeting Airtable Community!
I have an existing formula that is returning the correct results:
IF(AND({Guest Code}=‘DONOR’,{Status S2}=‘Yes’),First&" "&Last)
I now need to modify the formula to include {Status S2}=‘Yes FUP’ and the ‘Yes’ variable.
Any assistance on this would be greatly appreciated, as always.
John
Feb 11, 2020 01:26 PM
Can you clarify – do you want to require that {Status S2}
contains BOTH “Yes FUP” AND “Yes”, or EITHER “Yes FUP” OR “Yes”?
Feb 11, 2020 01:56 PM
Thanks Jeremy. I’m sorry I didn’t clarify that. It would be
EITHER ‘Yes FUP’ or ‘Yes’.
Feb 11, 2020 02:02 PM
This should do it:
IF(
AND(
{Guest Code}='DONOR',
OR(
{Status S2}='Yes',
{Status S2}='Yes FUP'
)
),
First&" "&Last
)
Feb 11, 2020 02:26 PM
Thanks Jeremy! I will try this now!!