Hi Everyone,
We have a system of many sheets which reports various metrics of this year and the previous two years. The idea being we are constantly seeing three years metrics for comparison on dashboards and reports with no intervention. Directors have asked if we could instead show metrics for the company year which runs beginning of October to the end of September.
Formulas I use generate a Yes or No in three columns, I then count the Yes entries to generate the metrics for three years.
This year =IF(YEAR([Customer reported date]@row) = YEAR(TODAY(0)), "YES", "NO")
Year before =IF(YEAR([Customer reported date]@row) = YEAR(TODAY(0)) - 1, "YES", "NO")
Two years before =IF(YEAR([Customer reported date]@row) = YEAR(TODAY(0)) - 2, "YES", "NO")
I can only come up with manual methods based on dates that requires intervention, any ideas how to do this with no intervention?
Michael