Scenario: I have a workbook with two sheets (calendar, Events). On the Events sheet I have 4 columns; Date(A), Time(B) , Description(C), and Location(D). Now on my Calendar page I want to display the Events that correspond to Today(). My Index/match finds and displays the first match, But How to I code for days when there are multiple events. Here is my formula
Thanks
Code:
=IFERROR(INDEX(Events,MATCH(TODAY(),Events!A2:A10,0),2),"Nothing Schudeled")
Thanks