Oct 09, 2022 04:30 AM
Hey there, I want to create a formula for a that says
If {first name} and {email} column exist then put the word yes and if not then nothing
Is this possible?
Oct 09, 2022 06:19 AM
Welcome to the community!
I’m no expert, but this formula should do what you’re describing:
IF(OR({first name}="",{email}=""),"","yes")
If either the name or the email is blank, it will return nothing, but if both are full, it will return “yes.”
Oct 09, 2022 07:02 PM
Hi.
Airtable is more flexible))
If(AND({first name},{email}),‘yes’)