Formula for finding rank in ms access
I would like to get rank by using ms access
Collapse
X
-
I would like to get rank by using ms access
Tags: None -
-
Not quite following g you here...is Rank a field in a table or are you referring to an Autonumber field? Going to need some details in order to help.Comment
-
If you want to rank data in MS Access, you will need to go into the query builder and in SQL view.
Code:SELECT Table, (SELECT COUNT(T1.fieldyouwanttorank) FROM [Table] AS T1 WHERE T1.fieldyouwanttorank>= T2.fieldyouwanttorank) AS Rank FROM [Table] AS T2 ORDER BY fieldyouwanttorankDESC
Comment
-
-
Comment