Custom Sort Problem

  • Thread starter Thread starter keith123
  • Start date Start date
K

keith123

Guest
I have a report that is Query based. What I need to do is sort the "Rank" field by the highest rank downwards. These ranks will be coming from a employee's details table. The report generates who worked on a certain project.

Example:

Project Manager
Assistant Project Manager
Snr Engineer
Jnr Engineer
etc...

If the answer is a code based one please give me an example.

Any help would be appreciated.

Thx
Keith
 
You'll probaly have to add a "Rank" indicator to your table for each job title:
Rank.............JobTitle
5..................Project Manager
4..................Assistant Project Manager
and so on

SELECT [JobTitle]
FROM [JobTitleTable]
ORDER BY [Rank] DESC;
 
Super Thanks!!
 

Users who are viewing this thread

Back
Top Bottom