Is it possible to load ranges dynamically within a date function? I would imagine having a separate sheet with the beginning and ending dates for every month of the current year, and then referencing those within date functions. Example: =COUNTIFS({Sheet Reference for apples eaten}, >=DATE(*), {Sheet Reference for apples eaten}, <=DATE(*))
Where * is the reference to the beginning and ending date for, say, January.
The output of this would be the number of apples eaten in January this year.
The reason for doing this dynamically, if not obvious, is that if I am going to have a sheet that displays the number of apples eaten every month of the year, lets say for all the members of my team (12 rows), that is 144 cells. And if I have to update that next year to 2022 dates, it would be nice to just have to update 24 cells in the "helper sheet", rather than 144.
Hope this makes some sort of sense...