Hi all,
My team tracks projects that see savings over a 12 month period.
So I have a Start Date column -- that is the date that the savings will start, but I need to be able to determine how many months will count towards this year, vs next year (or even last year).
So for example, if I have a project with a start date of 6/1/2023 --- that project will have 6 months of savings this year, and 6 months of saving that will roll over into next year.
I currently have 2 columns --- CY Months and Carry Over Months --- with the formula below, if I have a start date of 1/1/24 -- its giving me 12 for the number of month for this year. Please help!
=IFERROR(IF(OR([CURRENT YEAR]# > YEAR([End Date]@row)), "0", IF(YEAR([End Date]@row) <> [CURRENT YEAR]#, 12 - MONTH([Start Date]@row) + 1, MONTH([End Date]@row) - 0 - 1)), "")