Hi,
Admittedly, I'm very new when it comes to spreadsheet formulas. I was given this formula for fiscal year and quarter calculations but I was wondering if there was a simpler way to do it. Also, it's in a calendar year format and our fiscal year is July 1 to June 30. I appreciate your help.
=IF(ISDATE([Completion Target]@row), "FY" + IF(MONTH([Completion Target]@row) = 1, RIGHT(YEAR([Completion Target]@row), 2), RIGHT(YEAR([Completion Target]@row) + 1, 2)) + "-Q" + IF(OR(MONTH([Completion Target]@row) = 1, MONTH([Completion Target]@row) >= 11), 4, IF(MONTH([Completion Target]@row) >= 8, 3, IF(MONTH([Completion Target]@row) >= 5, 2, 1))))
Thanks!