ordering by multiple fields

mikeder

Member
Local time
Today, 13:55
Joined
Nov 12, 2002
Messages
34
this should be a simple problem. I have a form that contains the following fields:

Year
FileNumber
ProposalPhase
JobPhase

There are approximately 2000 project entries in my dbase.

What I want to do is sort these project entries by FileNumber first, then by ProposalPhase, then by JobPhase, then by Year. I can only get it to sort by FileNumber right now. Anybody have suggestions on how to rank order your sort order?

thanks
 
Create a query and put the columns in this order:

FileNumber, ProposalPhase, JobPhase, Year

Set the sort order for each as you want it.

hth,
Jack
 

Users who are viewing this thread

Back
Top Bottom