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 accessTags: 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.
 
 This YouTube video also provides a guide on how to do it (as well as how to break a tie when you have ranked data with 2 or more of the same number): https://youtu.be/9wlme8NcBC8Code:SELECT Table, (SELECT COUNT(T1.fieldyouwanttorank) FROM [Table] AS T1 WHERE T1.fieldyouwanttorank>= T2.fieldyouwanttorank) AS Rank FROM [Table] AS T2 ORDER BY fieldyouwanttorankDESCComment
- 
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
- 
	
	
	
		
	
	
	
		
	
		
			
				
	
	
	
	
	
	
	
	
	
 
	 
	 
	 
	
Comment