I need some Airtable Formula help. I am trying to merge the below. I’ve been looking at it so long I can’t work out what is going on any more!
This works:
IF({Rejected}, IF({Rejection Reason}=“Unresponsive”,“Unresponsive”,
IF({Rejected}, IF({Rejection Reason}!=“Unresponsive”,“Rejected”))))
And this does too:
IF(Rejected}=BLANK(),IF({Status 1}+{Status 2}=2,“Done”,
IF(Rejected}=BLANK(),IF({Status 1}+{Status 2}=1,“One of two”,
IF(Rejected}=BLANK(),IF({Status 1}+{Status 2}=0,“Pending”
))))))
However, if I put them together, then it only displays the results of the first 2 lines.
If I switch it around so the 3 lines goes first, then it only displays the results of the 3 lines.
Not sure why but any help gratefully received.