Hi, I’m trying to figure out why I’m experiencing issues with my nested IF(AND()) function on Airtable. When I limit the fields in AND() to just two conditions, it works, but anything else and Airtable won’t let me use the formula at all.
Please advise! Thank you.
What works
IF(AND({Person}= “1”, {A}= “Yes”), “Approved”,
IF(AND({Person}= “2”, {B}= “Yes”), “Approved”,
IF(AND({Person}= “3”, {C}= “Yes”), “Approved”,
IF(AND({Person}= “4”, {D}= “Yes”), “Approved”,
IF({Quote} = “0.00”
, “Temporary approval”, “Unapproved”)))))
What doesn’t
IF(AND({Person}= “1”, {A}= “Yes”), “Approved”,
IF(AND({Person}= “2”, {B}= “Yes”), “Approved”,
IF(AND({Person}= “3”, {C}= “Yes”), “Approved”,
IF(AND({Person}= “4”, {D}= “Yes”), “Approved”,
IF(AND({Person}= “5”, {E}= “Yes”, {F}= “Yes”), “Approved”,
IF(AND({Person}= “6”, {E}= “Yes”, {F}= “Yes”, {G}= “Yes”), “Approved”,
IF({Quote} = “0.00”
, “Temporary approval”, “Unapproved” )))))))
