Quarter based on the fiscal year
Hello,
Trying to figure out the best way to report out quarters from the fiscal year. For example, Nov, Dec, Jan would be Q1 and the other subsequent quarter.
I might miss out on something in my formula below.
Thank you!
Best Answer
-
This will give you the quarter. Instead of the IFERROR, this just checks to make sure there is data in the [Departure Date] cell. Maybe someone else will come along and show a better way to do that part.
=IF([Departure Date]@row <> "", "Q" + IF(MONTH([Departure Date]@row) = 1, "1", IF(MONTH([Departure Date]@row) <= 4, "2", IF(MONTH([Departure Date]@row) <= 7, "3", IF(MONTH([Departure Date]@row) <= 10, "4", "1")))))
Answers
-
This will give you the quarter. Instead of the IFERROR, this just checks to make sure there is data in the [Departure Date] cell. Maybe someone else will come along and show a better way to do that part.
=IF([Departure Date]@row <> "", "Q" + IF(MONTH([Departure Date]@row) = 1, "1", IF(MONTH([Departure Date]@row) <= 4, "2", IF(MONTH([Departure Date]@row) <= 7, "3", IF(MONTH([Departure Date]@row) <= 10, "4", "1")))))
-
Thank you @Carson Penticuff , It works!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!