Hi everyone,
I’m looking for a formula to check if any cells on a selection of 5 are empty. Hard to explain globally, but theorically the formula would look like this: IF (Cell 1) is empty OR (Cell 2) is empty OR (Cell 3) is empty… THEN display :white_check_mark:
How can I achieve this on Airtable?
Thanks in advance for your help.
Solved
Using IF formula to check empty cells
Best answer by kuovonne
Welcome to the Airtable community!
You want to compare values with BLANK(), and use an OR() function.
IF(
OR(
Field1 = BLANK(),
Field2 = BLANK(),
Field3 = BLANK(),
Field4 = BLANK(),
Field5 = BLANK()
),
"✅"
)
If this answers your question, please mark this post as the solution. Otherwise, could you please give a bit more details and a screen capture?
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
