I have 4 formulas in seperate cells that look at open and closed actions and does a count of how many there are for those months. The current formula for the current month:-
=COUNTIFS({Date opened}, >=DATE(YEAR(TODAY()), MONTH(TODAY()), 1), {Date opened}, <DATE(YEAR(TODAY()), MONTH(TODAY()) + 1, 1))
works fine and has done all the time.
The formulas to count for previous months worked fine with no issues prior to the new year and now they are all coming back with #Invalid Vaule and i am not sure what has broken over the new years or how to fix the issue. The formula to count for previous months is:
=COUNTIFS({Date opened}, >=DATE(YEAR(TODAY()), MONTH(TODAY()) - 1, 1), {Date opened}, <DATE(YEAR(TODAY()), MONTH(TODAY()), 1))
I increased the -1 value to then show for 1 month ago, -2 for 2 months ago etc. I am assuming that this has something to do with how smartsheets reports the dates and it being Jan it cannot go before Jan. I have tried to adjust the year to -1 and the get #unparseable so not sure how to fix so that i can get this to work. Any help would be greatly appreciated.