Help

Help with a logical function

1321 4
cancel
Showing results for 
Search instead for 
Did you mean: 
Nadia_Gorchakov
4 - Data Explorer
4 - Data Explorer

Hi!

I’m using airtable in the hiring process (kind of like a scorecard) and I was wondering how to write a function to produce a recruitment decision based on two airtable columns.
Here’s the idea: If {column 1} = ‘accept’ AND {column 2} = ‘accept’, than ‘proceed’. Otherwise ‘no’.
Is there a way to write a logical function for that?

Thanks in advance! :slightly_smiling_face:
Nadia

4 Replies 4

Hi @Nadia_Gorchakova and Welcome to Airtable Community :grinning_face_with_big_eyes:

Try this.
IF({column 1}=“no”,“no”,IF({column 2}=“no”,“no”,“accept”))

Replace the “no”'s with whatever you’re using for the non accepted.

Here’s how to do it using AND:

IF(AND({column 1} = "accept", {column 2} = "accept"), "proceed", "no")

@Justin_Barrett Thanks for posting :grinning_face_with_big_eyes:

I find myself staying away from the AND formula only because I get tripped up as to where to place them.

Nadia_Gorchakov
4 - Data Explorer
4 - Data Explorer

Thank you friends! :slightly_smiling_face: