Hi, I am trying to put multiple IF functions in one equation and it doesn't seem to be working.
The formula should return differently if:
1) the program type is "Active"
2) the program is a virtual program and not a Youth & Adult Program
3) the program is a virtual program and is a Youth & Adult Program
4) Otherwise (The program is not a Virtual Program, Not a Youth and Adult Program and not "Active")
=IF([U12 In-Person Program Type]@row = "Active", ([Facility Name]@row+" "+"Active/Multisport" + " " +[Program Day of Week]@row +" " + [Season]@row),(IF(AND([Virtual]@row=true, [Youth & Adult Program]@row=false),[Virtual Program Type]@row + " Virtual Program" + [Program Day of Week]@row + " " + [Season]@row),(IF(AND([Virtual]@row=true,[Youth & Adult Program]@row=true),"N/A",([Facility Name]@row + " " + [U12 In-Person Program Type]@row + " " + [Program Day of Week]@row +" " + [Season]@row)))))
Are my parantheses in the right place? Any insight into what the issue could be would be appreciated.