Formula to show date in Fiscal Year
I located the formula to create a Fiscal Year from a date (January to December)
="Q" + ROUNDUP((MONTH(Date@row) / 4)) + " " + YEAR(Date@row)
1/7/2021 = Q1 2021
But our company Fiscal Year is November 1 to October 31. I cannot figure out how to edit this formula to work.
Thanks!
Best Answer
-
Presuming you have column named Date with a date in it:
=IF(MONTH(Date@row) > 10, "Q1 " + (YEAR(Date@row) + 1), IF(MONTH(Date@row) = 1, "Q1 " + YEAR(Date@row), IF(MONTH(Date@row) > 7, "Q4 " + YEAR(Date@row), IF(MONTH(Date@row) > 4, "Q3 " + YEAR(Date@row), "Q2 " + YEAR(Date@row)))))
Hope this helps!
Answers
-
Presuming you have column named Date with a date in it:
=IF(MONTH(Date@row) > 10, "Q1 " + (YEAR(Date@row) + 1), IF(MONTH(Date@row) = 1, "Q1 " + YEAR(Date@row), IF(MONTH(Date@row) > 7, "Q4 " + YEAR(Date@row), IF(MONTH(Date@row) > 4, "Q3 " + YEAR(Date@row), "Q2 " + YEAR(Date@row)))))
Hope this helps!
-
PERFECT! That worked exactly the way it was intended! Thank you.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.6K Get Help
- 403 Global Discussions
- 215 Industry Talk
- 455 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 56 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!