Thanks for your responses!
Unfortunately, my MS Excel 2013 doesn't have the IFS() function as it would make things intuitive and easy for me.
I've been able to figure out the formulas for all but one of the cells I need. I need to tweak something in the formula. Perhaps I can get someone to take a look and offer a suggestion?
Project description. I'm modifying a dynamic executive calendar which shows the dates and tasks that need to be completed leading up to and after the executive meeting (and decision) date. The user enters the meeting date into an input cell and the calendar populates with the correct dates and task descriptions.
In this modification, I want to accommodate holidays and meeting duration (whether 1-Day or 2-Day) and have been developing a model task schedule from which the executive calendar (not shown) will source its dates and task descriptions. In the screen capture below, the Task description - regular (Column D) presents the task sequence leading to the executive decision for a standard 1-Day meeting with no holidays. Task description - Holiday adj.; Combined 2 (Column H) presents the task sequence leading to the executive decision for a 2-Day meeting which includes a holiday, Feb 17, 2020, in the schedule. As such, in this scenario, I need the task schedule to return a second executive decision day (which it does in cell H15) and also populate "Task 5" in cell H16 (which it doesn't).
In cell H16, I've got the following formula:
=IF($C16="Holiday","",IFERROR(IF(AND($D$2="2-Day",MATCH("Holiday",$C$14:$C$15,0)),$D14,IF(MATCH("Holiday",$C$14:$C$15,0),$D15)),$D16))
However, the formula isn't returning the value in cell D15 ("Task 5") which is what I want it do so for a 2-Day meeting. I've tried different iterations of the aforementioned formula, but I've not been able to figure out the right configuration. Any help or suggestions would be appreciated...