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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sort

Status
Not open for further replies.
Jul 21, 2011
28
PK
Crystal 2008

Hi I have a report which is grouped by SchemeID. Within this group are transactions grouped by TransID, so obviously this lists the transactions in TransID order beneath SchemeID.

What i want to do is for a particular SchemeID, say 715, instead of it grouping and listing in TransID order, I want it listed in RetailID order, but keeping the TransID order for all the other SchemeID's.

Was wondering if this was possible, and how i could go about it?

Thanks

Chris

 
You could do it with a formula field, e.g.
Code:
If SchemeID = 715
then RetailID 
else TransID
For grouping, replace TransID with @GroupField

[yinyang] Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP [yinyang]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top