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

Ranking Data In Access

Status
Not open for further replies.

charliec

IS-IT--Management
Aug 28, 2001
11
0
0
US
I have three fields: State, Total Sales, Sales Person. In a query, what is the formula/syntax for calculating the ranking (most to least sales) of sales persons in each state. I tried- New Ranking:Rank([Sales Person], [Total Sales], [State]) but I got an UNDEFIND FUNCTION error.

Any ideas?

Thanks.
 
essentially you need to sort, dont think theres a function called rank.

The SQL for the query you would base your table would be something similar to this

SELECT [state], [sales person], Sum([Sales])
FROM where ever
GROUP BY [state], [sales]
ORDER BY Sum([Sales]) DESC;

This would show a total sold by each salesman in each state, this is then sorted descending by the value of the order.

So the person with highest sales will show first.

This can be further refined to only include the top 10 or 5 etc etc rows.

Hope that helps

 
How are ya charliec . . . . .

Have a look below:


Calvin.gif
See Ya! . . . . . .
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top