Paulr81755 Posted October 8, 2004 Posted October 8, 2004 Does anyone know of or have a function that converts a date to a calendar quarter, e.g., 1/1/2004 to "First Quarter"? Thank you.
transpower Posted October 8, 2004 Posted October 8, 2004 Use Case ( WeekOfYear(date) <= 13 ; "First Quarter" ; WeekOfYear(date) <= 26 ; "Second Quarter" ; WeekOfYear(date) <= 39 ; "Third Quarter" ; "Fourth Quarter" )
-Queue- Posted October 8, 2004 Posted October 8, 2004 If quarter is determined by first of the month, try MiddleWords( "First Second Third Fourth"; (Month(date) + 2) / 3; 1 ) & " Quarter"
Recommended Posts
This topic is 7420 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now