Non-Standard sorting of records

M

Michael A. Bennett

How can I sort the records for my report in a non-standard way?

I have a field that has three possible values: 'D', 'L' and 'N'. I would
like these records to be sorted as 'L', 'D' and 'N'. I could create a table
with these values and a corresponding sort value, but is there another way
to do this?

Thanks for your help!
Mike
 
R

Rick Brandt

Michael A. Bennett said:
How can I sort the records for my report in a non-standard way?

I have a field that has three possible values: 'D', 'L' and 'N'. I would
like these records to be sorted as 'L', 'D' and 'N'. I could create a table
with these values and a corresponding sort value, but is there another way
to do this?

Sort on the expression...

IIf([FieldName]="L","A", [FieldName])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top