Hello there,
I've already built a formula out so that it includes the Quarter and fiscal year, and it works great, however I was wondering if it is possible to make this formula include the extra 5 days of each overlapping quarter? I have no idea how to incorporate this into my working formula however. Any help would be greatly appreciated! Our quarters are:
Q1: Nov - Jan
Q2: Feb - Apr
Q3: May - July
Q4: August - Oct.
Here's the working formula I have: ="Q" + IF(OR(MONTH([Return Date]@row) >= 11, MONTH([Return Date]@row) = 1), "1FY", IF(MONTH([Return Date]@row) >= 8, "4FY", IF(MONTH([Return Date]@row) >= 5, "3FY", "2FY"))) + IF(MONTH([Return Date]@row) >= 11, RIGHT(INT(YEAR([Return Date]@row) + 1), 2), RIGHT(YEAR([Return Date]@row), 2))
So new quarters would be.
Q1: 11/6 - February 5th
Q2: 2/6 - 5/5
Q3: 5/6 - 8/5
Q4: 8/6 - 11/5
What would the new formula look like with keeping the above dates in mind?