473,407 Members | 2,320 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

I would like to get rank by using ms access

Formula for finding rank in ms access
May 13 '18 #1
6 20759
Nauticalgent
100 64KB
Maybe you should try posting this in the Access forum of this site and not Oracle?
Jun 20 '18 #2
Nauticalgent
100 64KB
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.
Jun 20 '18 #3
twinnyfo
3,653 Expert Mod 2GB
Conceptually, you have to use the DCount() funciton on the query or table you want the rank for. However, you need to provide more information before we can give any better advice.
Jun 20 '18 #4
jfreeland
1 Bit
If you want to rank data in MS Access, you will need to go into the query builder and in SQL view.

Expand|Select|Wrap|Line Numbers
  1. SELECT Table,
  2.        (SELECT COUNT(T1.fieldyouwanttorank) 
  3.           FROM
  4.                  [Table] AS T1 
  5.          WHERE T1.fieldyouwanttorank>= T2.fieldyouwanttorank) AS Rank 
  6. FROM 
  7.       [Table] AS T2 
  8. ORDER BY fieldyouwanttorankDESC
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/9wlme8NcBC8
Sep 15 '23 #5
cactusdata
214 Expert 128KB
My function RowRank is for you:
VBA.RowNumbers#5-rank
Sep 15 '23 #6
isladogs
456 Expert Mod 256MB
See also my approach based on the Serialize function: Rank Order in Queries
Sep 15 '23 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: JED | last post by:
I have an opportunity to work on a web based project using Access. However, there has been a suggestion that MySQL might be a better alternative. The project is actually a small project (less than...
5
by: dananrg | last post by:
I've created a small company database where the tables reside in a SQL Server database. I'm using Access 2000 forms for a front end. I've got a System DSN set-up to SQL Server and am using links...
3
by: Jay Best | last post by:
Hi there The story is as follows: I write up some pretty detailed reports on people, and what I am wanting to do is speed up the process as a proportion of the reports that I am writing are...
3
by: bill mahoney | last post by:
Hello, I am using access 2000 and I am trying to email a csv file. I have only used the docmd.sendobject command but you can only email objects that are within the access database ( as far as I...
4
by: Larry Rekow | last post by:
Using Access 2000, I have a linked table using specification named "Test Link Specification" When attempting to create data adapter in VS.Net, it first complains that it cannot retrieve the...
6
by: Serious_Practitioner | last post by:
Good day all, and thank you in advance for your help. No - MANY thanks in advance for your help - I know nothing about using databases on Web servers. I am about to discuss a project with a...
0
by: meyvn77 | last post by:
Hello, I wrote an .ADP application in Access 2002 and delivered it to the client. They are not due for an upgrade till January and are running Access 2000. They would like to use the...
4
by: Bugs | last post by:
Hi everyone. I am trying to open a database which works fine using Access 2003, but when trying to open it on another PC that has Access 2002 I get the following error "This database is...
1
by: konradson | last post by:
Hello, I've built a DB I would like to use in an Intranet through web, this way a small group of people can gain access by typing the address in their browser. It is a small DB, with a few...
3
by: Bruce | last post by:
I have a number of Access 2000 format databases on a Windows 2003 server. For some reason I can no longer compact these databases directly on the server using Access 2003. Access 2000 seems to...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.