I am creating a decision tool where yes/no responses will trigger a follow up question or decision. I created a formula with 13 arguments where each IF has two AND conditions (if no - it is true, if yes - It is false). I am no expert and tried to follow the guidance from several tutorials and help sites. This is my formula:
=IF((AND(J7="Planned - Shift / Vacation Coverage", M7="No")), "Is an E out?", "Schedule LE",
IF((AND(J7="Planned - Off-shift PMs", M7="No")), "Can the scheduled resources complete work within shift?", "CE reassigns WOs to new shift LE - No OT needed",
IF((AND(J7="Planned - Customer driven shutdown", M7="No")), "Schedules OT", "CE assigns work to LEs",
IF((AND(J7="Planned - Training", M7="No")), "Schedules OT", "Does LE need to get trained in OT?",
IF((AND(J7="Planned - Customer event", M7="No")), "Schedules OT", "CE assigns work to LE",
IF((AND(J7="Unplanned - Sick call in", M7="No")), "Is an E out?", "Schedules LE",
IF((AND(J7="Unplanned - Escorting", M7="No")), "Schedule OT", "Move scheduled work to next day/week",
IF((AND(J7="Unplanned - Emergency response/repair", M7="No")), "Is the request a code 3?", "Can this be handled by scheduled resources?",
IF((AND(J7="Unplanned - Customer Event", M7="No")), "Schedules OT", "Executes work within shift",
IF((AND(J7="Unplanned - Call in", M7="No")), "OT will not be paid", "Schedules OT",
IF((AND(J7="Unplanned - Weather", M7="No")), "Can resources be allocated from the shift in the first instance?", "Can CE or ACE become the additional HC?",
IF((AND(J7="Planned - Off premises work", M7="No")), "Schedules OT", "LE schedules time off premises within shift",
IF((AND(J7="Administrative work", M7="No")), "Schedules OT", "Executes within shift")))))))))))))
What did I do wrong??? Please HELP!!!