Fiscal Year and Quarter Designation
Hi Folks,
Not the best with formulas and struggling with trying to generate a fiscal year Quarter and Year (for example Q1-2023) based off a date column. Fiscal year starts on July 1st. Appreciate any help in advance.
Best Answer
-
Try something like this:
="Q" + IF(MONTH([Date Column]@row)<= 3, "3", IF(MONTH([Date Column]@row)<= 6, "4", IF(MONTH([Date Column]@row)<= 9, "1", "2"))) + "-" + (YEAR([Date Column]@row) + IF(MONTH([Date Column]@row)>= 7, 1, 0))
Answers
-
Try something like this:
="Q" + IF(MONTH([Date Column]@row)<= 3, "3", IF(MONTH([Date Column]@row)<= 6, "4", IF(MONTH([Date Column]@row)<= 9, "1", "2"))) + "-" + (YEAR([Date Column]@row) + IF(MONTH([Date Column]@row)>= 7, 1, 0))
-
Thank you so much!
-
Happy to help. 👍️
-
@Paul Newcome what would this formula be if you just wanted it to say for example FY-2023
-
@Bobby Digital It would look more like this:
="FY" + "-" + (YEAR([Date Column]@row) + IF(MONTH([Date Column]@row)>= 7, 1, 0))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!