Hi there,
I am looking to summarize data from a master sheet for inclusion into a dashboard via a project metrics sheet.
Within the master sheet I have an “Opening Date” that is populated when the opening date is decided.
I want to populate the Dashboard with the number of sites that HAVE opened each month (past tense).
Here is the formula that I have that works to summarize the openings by month (and year). The problem with this formula is that it also counts the sites that are forecasted to open.
=COUNTIFS({Opening Date}, IFERROR(MONTH(@cell), 0) = 8, {Opening Date}, IFERROR(YEAR(@cell), 0) = 2023)
Here is the formula that works for me to calculate the number of sites that have opened this year in the past.
=COUNTIF({Opening Date}, AND(@cell >= DATE(YEAR(TODAY()), 1, 1), @cell <= TODAY()))
I can not seem to figure out how to put the two together by month.
Thank you for your assistance 😀