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

Group sort

Status
Not open for further replies.

rreddy01

Programmer
Apr 18, 2012
15
US
I have a report which is grouped by manager name, i dont want that to group in alphabetical order instead i want to start with letter B.

Thanks,
rreddy
 
Create a formula that will pull the relevent data out of the manager name - something like this:

If left({manager name}, 1) > 'A' then 1 else 2

This formula will put all of the managers whose names start with 'A' at the end of the report.

Group by this and hide the group sections. Then group again by manager name to get the names in alphabetical order within the constraints of the outer group.

-Dell

A computer only does what you actually told it to do - not what you thought you told it to do.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top