Quarter Formula
I am trying to create a formula that extrapolates the quarter (Q1, Q2, etc) based upon the end date column. Has anyone done this before?
Thanks in advance for any help provided.
Best Answer
-
I use this although I'm not sure if this works beyond the last year. I wrote it a while back.
= "Q" + ((ROUNDDOWN(((YEARDAY([End Date]@row) - 5) / 365) * 4)) + 1) + "-" + RIGHT([End Date]@row, 2)
Answers
-
I use this although I'm not sure if this works beyond the last year. I wrote it a while back.
= "Q" + ((ROUNDDOWN(((YEARDAY([End Date]@row) - 5) / 365) * 4)) + 1) + "-" + RIGHT([End Date]@row, 2)
-
Thanks. I found an Excel formula that works.
="Q"+ROUNDUP(MONTH([Expected End Date]@row) / 3, 0) This formula works no matter the end year.
-
Thanks a lot, Its also help me a lot.
-
-
Many thanks! Your assistance has been incredibly beneficial.
-
This content has been removed.
-
This content has been removed.
-
This content has been removed.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!