Hello,
I'm stumped on this formula and need assistance please! I am trying to populate Courses to Approve -Dean column based on the choice in the PC or Chair Approval Column. It works until I get to the "Some Courses Denied" choice in the PC or Chair Approval Column - which then is supposed to be taking the courses listed in the All Courses Requested column and removing the courses listed in the Courses Declined - PC or Chair column and placing the result in the Courses to Approve- Dean column.
This is the formula I have so far (please note that {Course Name} references another sheet where I have joined the Subj/No with the Course Title into one field and used that column as the range (Course Name) - which results in the full course name i.e. ACC:100 Applied Accounting.
IFERROR(IF([PC or Chair Approval]@row="All Courses Denied", "ALL COURSES DENIED", IF[PC or Chair]@row="", [All Courses Requested]@row, IF(AND([PC or Chair]@row<>"", [PC or Chair Approval]@row="All Courses Approved"), [All Courses Requested]@row, IF([PC or Chair]@row="Some Courses Denied", JOIN(COLLECT({Course Name}, {Course Name}, HAS([All Courses Requested]@row, @cell), {Course Name}, NOT(HAS([Courses Declined – PC or Chair]@row, @cell))), CHAR(10)))))), "")
Any help would be greatly appreciated!!!