What formula to use, to calculate records from today till 6 months down the line? And this rule should be valid at all times.
In other words, how to calculate sum of values eg: count of total number of projects starting from today (26/April/24) till 12 months down the line i.e. 26/October/24?
For sum of values starting from today till 6 months from now, I am using this formula,
=SUMIFS({Range1}, {Range2}, Criteria2, {Range Year}, YEAR(TODAY()), {Range Month}, <(MONTH(TODAY()) + 6), {Project_Status}, NOT(OR(@cell = "a", @cell = "b", @cell = "c", @cell = "d", @cell = "e", @cell = "f")), {Range4}, "0")
Range1, Range 2 and so on are cell references taken from another sheet. I can't share the sheet. Sorry.
this formula is fine for now. But when the year changes from 2024 to 2025, this formula doesn't work. Similarly, I want to calculate values for 12 months period.
How to resolve? Please help!