I’m working with AirTable and trying to create a complex formula but running into issues. I have a database with student information and need to determine eligibility status based on multiple criteria.
Here’s what I’m trying to accomplish:
- If StudentLevel equals “Beginner”, set status to “Beginner”
- If StudentLevel equals “Intermediate”, check if LocationCode is “Advanced” or “Intermediate”, OR if CampusCode is “Advanced” or “Intermediate” - if true, set status to “Intermediate”, otherwise “Beginner”
- If StudentLevel equals “Advanced”, check if LocationCode is “Advanced” OR CampusCode is “Advanced” - if true, set status to “Advanced”, otherwise “Beginner”
My current formula isn’t working properly:
IF(StudentLevel = "Beginner", "Beginner", IF(StudentLevel = "Intermediate", IF(OR(LocationCode = "Advanced", LocationCode = "Intermediate", CampusCode = "Advanced", CampusCode = "Intermediate"), "Intermediate", "Beginner"), IF(StudentLevel = "Advanced", IF(OR(LocationCode = "Advanced", CampusCode = "Advanced"), "Advanced", "Beginner"))))
What am I doing wrong with the nested IF statements?