How to update formula to show fiscal quarter rather than calendar

I found this formula on the website to show the quarter based on timeline. However we are on a fiscal quarter system that starts in July. How can I display that instead via the formula?

IF({Timeline#End},“Q”&FORMAT_DATE({Timeline#End},“Q - YY”),“Q”)

Edit: I was able to use this formula: IF({Due Date},
“Q” & FORMAT_DATE(EDATE(FORMAT_DATE({Due Date}), 7),“Q - YY”)) but it is returning true in rows without dates. How to resolve?

Hi Samantha,

Try:

IF({Due Date},"Q"&FORMAT_DATE(EDATE({Due Date},7),"Q - YY"),"Q")

Looking for a simpler way to write complex formulas? Check out the Advanced Formula Booster at https://mdboosters.com. It’s a convenient third-party app that simplifies formula writing. With it, you can spread your formulas across several lines, utilize variables, and access dozens of functions not found in the standard formula column.