Forum Discussion
Fill Excel Calendar from a List
- Jun 15, 2022
With Excel 365 you can use FILTER()
Lets say you have the cell A1 has the day number in it and a few lines below it for 'events' to be typed then in A2 type:
Assuming you Format as Table the Event list (name the table EVENTS)
=FILTER( EVENTS[Event], EVENTS[Day of Month]=DAY(A1), "")
(if you don't format the event list as table replace EVENTS[Event] with the range of event names and EVENTS[Day of Month] with range of event days, BUT I highly recommend you do format it as a table)this assumes the days in the template are actual DATE if they are NOT actual date values then replace DAY(A1) with just A1
I would like to have my calendar put the event on the "week" and "day". Can you give me the formula for that? ld mtarler
Example...
Event A happens on the 4th Wednesday of every month
Event B happens on on the 1st Tuesday of every month
Event C happens on the 2nd Friday of every month
etc.......