Skip to main content

How to create this Airtable formula with an IF condition

  • October 9, 2022
  • 2 replies
  • 30 views

Forum|alt.badge.img+4

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?

2 replies

Matthew_Lanni
Forum|alt.badge.img+18
  • Inspiring
  • 52 replies
  • October 9, 2022

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.”


Alexey_Gusev
Forum|alt.badge.img+25
  • Brainy
  • 1261 replies
  • October 10, 2022

Hi.
Airtable is more flexible))

If(AND({first name},{email}),‘yes’)