Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display per quarter

Status
Not open for further replies.

Thant

Technical User
Dec 31, 2007
103
US
Greetings,
I have a report grouped by quarter but the title of the group keeps coming in as a date (01/2010) etc. What I would like is this group title to show as quarter (1st Quarter 2nd Quarter etc.) I know there is a way to do this in crystal but im not sure how to go about it.
Any ideas and thanks in advance


Anything worth doing is worth messing up at least 5 times before you get it right!
 
In the group expert->options->customize groupname->use a formula->x+2:

select datepart("q",{table.date})
case 1 : "1st Quarter"
case 2 : "2nd Quarter"
case 3 : "3rd Quarter"
case 4 : "4th Quarter"

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top