Help

T

Ter

Ranking issue. I need the ranking to state the following:

# of #

Is there a way to do this?
 
D

Duane Hookom

In the Northwind, you can create this with the Employees table with SQL like:

SELECT (Select Count(*) FROM Employees e1 where e1.EmployeeID
<=Employees.EmployeeID) & " OF " & (SELECT COUNT(*) FROM Employees) AS Rank,
Employees.*
FROM Employees;
 

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