Forum Discussion

ld's avatar
ld
Copper Contributor
Jun 15, 2022
Solved

Fill Excel Calendar from a List

I have a list in excel of monthly recurring events. Column A contains the event name and column B is the day of the month that it occurs (1-31). Some days have multiple events. I would like to create...
  • mtarler's avatar
    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

     

Resources