Grouping Certain Records Together

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello - newbie here.

I have created a report and it prints out in order by Company Name (A to Z).

The report works fine.

However, we have a field called Status and some of the records have the
Status of "Closed". How can I print out all the Statuses that are "Closed"
at the end of the report. I still want to keep it in order by Company Name,
but want all the closed records grouped together at the end of the report.

Thanks !

Ty
 
Set up you primary level of Sorting and Grouping as
=([Status]="Closed") with an order of descending
Then order by other fields/expressions
 
Back
Top