We have our fiscal months that always end on a Saturday. So some months are Fiscal Month April 2024 will be from 4/1 - 5/3 = April, May is 5/4-5/31, etc. I made a Fiscal Months sheet with start date and end date for 3 years. I now want to cross reference that so when I import by revenue, bookings, etc. it will take the date and assign a fiscal month so I can then sum/analayze/graph etc. But the only way I know is to have formula like below. The problem is, each sheet I have to completely redo the ranges and selections. Is there a way to do this? Or do I just have to hard code the date instead of the range? As you can imagine, my formula right now has 72 ranges so its a lot of clicking. I need across multiple importing sheets.
=IF(Date@row < {Fiscal Months Range 1}, MONTH(Date@row), IF(AND(Date@row > {Fiscal Months Range 1}, Date@row < {Fiscal Months Range 2}), "4", IF(AND(Date@row > {Fiscal Months Range 3}, Date@row < {Fiscal Months Range 4}), "5", IF(AND(Date@row > {Fiscal Months Range 5}, Date@row < {Fiscal Months Range 6}), "6", IF(AND(Date@row > {Fiscal Months Range 7}, Date@row < {Fiscal Months Range 8}), "7", IF(AND(Date@row > {Fiscal Months Range 9}, Date@row < {Fiscal Months Range 10}), "8", IF(AND(Date@row > {Fiscal Months Range 11}, Date@row < {Fiscal Months Range 12}), "9", IF(AND(Date@row > {Fiscal Months Range 13}, Date@row < {Fiscal Months Range 14}), "10", IF(AND(Date@row > {Fiscal Months Range 15}, Date@row < {Fiscal Months Range 16}), "11",)