#1   Report Post  
Posted to microsoft.public.excel.misc
Todd Nelson
 
Posts: n/a
Default Ranking Formula

What is the formula to use that when ranking and two numbers are the same it
will just assign it the next numerical value. I am
using"=RANK($C49,$C$49:$C$62,1)" some cells automatically will go to the next
number, however most will not. I am throroughly confused!!!
  #2   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Ranking Formula

Hi!

That's how RANK works.

Try this:

=RANK($C49,$C$49:$C$62,1)+COUNTIF($C$49:$C49,$C49)-1

The first instance of a tie will be ranked higher:

25 = 4
10 = 1
10 = 2
22 = 3

Biff

"Todd Nelson" wrote in message
...
What is the formula to use that when ranking and two numbers are the same
it
will just assign it the next numerical value. I am
using"=RANK($C49,$C$49:$C$62,1)" some cells automatically will go to the
next
number, however most will not. I am throroughly confused!!!



  #3   Report Post  
Posted to microsoft.public.excel.misc
Todd Nelson
 
Posts: n/a
Default Ranking Formula

That doesn't quite work. I have a list of 14 production numbers that I want
to rank, with this ranking it will then autofill into a inventory spreadsheet
that has them sorted using the choose function. The weird thing about it is
the first cell will automatically go to the next number in instance of a tie,
the rest will stay the same number. All formatting is exactly the same. Is
there another way I could get these numbers to sort?? Thank you for your
help!

"Biff" wrote:

Hi!

That's how RANK works.

Try this:

=RANK($C49,$C$49:$C$62,1)+COUNTIF($C$49:$C49,$C49)-1

The first instance of a tie will be ranked higher:

25 = 4
10 = 1
10 = 2
22 = 3

Biff

"Todd Nelson" wrote in message
...
What is the formula to use that when ranking and two numbers are the same
it
will just assign it the next numerical value. I am
using"=RANK($C49,$C$49:$C$62,1)" some cells automatically will go to the
next
number, however most will not. I am throroughly confused!!!




  #4   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Ranking Formula

I have a list of 14 production numbers that I want to rank

The formula I suggested does just that!

Your problem is probably he

with this ranking it will then autofill into a inventory spreadsheet
that has them sorted using the choose function. The weird thing about it
is
the first cell will automatically go to the next number in instance of a
tie,
the rest will stay the same number. All formatting is exactly the same.
Is
there another way I could get these numbers to sort??


But you didn't explain any of this in your original post. What does your
Choose formula do? Post that formula.

Biff

"Todd Nelson" wrote in message
...
That doesn't quite work. I have a list of 14 production numbers that I
want
to rank, with this ranking it will then autofill into a inventory
spreadsheet
that has them sorted using the choose function. The weird thing about it
is
the first cell will automatically go to the next number in instance of a
tie,
the rest will stay the same number. All formatting is exactly the same.
Is
there another way I could get these numbers to sort?? Thank you for your
help!

"Biff" wrote:

Hi!

That's how RANK works.

Try this:

=RANK($C49,$C$49:$C$62,1)+COUNTIF($C$49:$C49,$C49)-1

The first instance of a tie will be ranked higher:

25 = 4
10 = 1
10 = 2
22 = 3

Biff

"Todd Nelson" wrote in message
...
What is the formula to use that when ranking and two numbers are the
same
it
will just assign it the next numerical value. I am
using"=RANK($C49,$C$49:$C$62,1)" some cells automatically will go to
the
next
number, however most will not. I am throroughly confused!!!






  #5   Report Post  
Posted to microsoft.public.excel.misc
Todd Nelson
 
Posts: n/a
Default Ranking Formula

Choose Formula
=CHOOSE($H49,C$49,C$50,C$51,C$52,C$53,C$54,C$55,C$ 56,C$57,C$58,C$59,C$60,C$61,C$62) h49 is match formula
Match Formula =MATCH(G49,$D$49:D62,0) (G49 is rank)
It works perfect if there is not any ties. the only problem is if there is,
for instance, two 6th place, then there is no 7. The match formula for 7
then comes back as
#N/A

"Biff" wrote:

I have a list of 14 production numbers that I want to rank


The formula I suggested does just that!

Your problem is probably he

with this ranking it will then autofill into a inventory spreadsheet
that has them sorted using the choose function. The weird thing about it
is
the first cell will automatically go to the next number in instance of a
tie,
the rest will stay the same number. All formatting is exactly the same.
Is
there another way I could get these numbers to sort??


But you didn't explain any of this in your original post. What does your
Choose formula do? Post that formula.

Biff

"Todd Nelson" wrote in message
...
That doesn't quite work. I have a list of 14 production numbers that I
want
to rank, with this ranking it will then autofill into a inventory
spreadsheet
that has them sorted using the choose function. The weird thing about it
is
the first cell will automatically go to the next number in instance of a
tie,
the rest will stay the same number. All formatting is exactly the same.
Is
there another way I could get these numbers to sort?? Thank you for your
help!

"Biff" wrote:

Hi!

That's how RANK works.

Try this:

=RANK($C49,$C$49:$C$62,1)+COUNTIF($C$49:$C49,$C49)-1

The first instance of a tie will be ranked higher:

25 = 4
10 = 1
10 = 2
22 = 3

Biff

"Todd Nelson" wrote in message
...
What is the formula to use that when ranking and two numbers are the
same
it
will just assign it the next numerical value. I am
using"=RANK($C49,$C$49:$C$62,1)" some cells automatically will go to
the
next
number, however most will not. I am throroughly confused!!!








  #6   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Ranking Formula

Ok, so what you need is a rank formula that breaks any ties. That's exactly
what the formula I suggested does.

Replace your current rank formula:

=RANK($C49,$C$49:$C$62,1)

With this rank formula:

=RANK($C49,$C$49:$C$62,1)+COUNTIF($C$49:$C49,$C49)-1

Now, your Choose formula should work properly.

You can use this in place of the Choose formula and eliminate the Match
formula altogether: (unless it's used elsewhere)

=INDEX(C$49:C$62,MATCH(G49,D$49:D$62,0))

Biff

"Todd Nelson" wrote in message
...
Choose Formula
=CHOOSE($H49,C$49,C$50,C$51,C$52,C$53,C$54,C$55,C$ 56,C$57,C$58,C$59,C$60,C$61,C$62)
h49 is match formula
Match Formula =MATCH(G49,$D$49:D62,0) (G49 is rank)
It works perfect if there is not any ties. the only problem is if there
is,
for instance, two 6th place, then there is no 7. The match formula for 7
then comes back as
#N/A

"Biff" wrote:

I have a list of 14 production numbers that I want to rank


The formula I suggested does just that!

Your problem is probably he

with this ranking it will then autofill into a inventory spreadsheet
that has them sorted using the choose function. The weird thing about
it
is
the first cell will automatically go to the next number in instance of
a
tie,
the rest will stay the same number. All formatting is exactly the
same.
Is
there another way I could get these numbers to sort??


But you didn't explain any of this in your original post. What does your
Choose formula do? Post that formula.

Biff

"Todd Nelson" wrote in message
...
That doesn't quite work. I have a list of 14 production numbers that I
want
to rank, with this ranking it will then autofill into a inventory
spreadsheet
that has them sorted using the choose function. The weird thing about
it
is
the first cell will automatically go to the next number in instance of
a
tie,
the rest will stay the same number. All formatting is exactly the
same.
Is
there another way I could get these numbers to sort?? Thank you for
your
help!

"Biff" wrote:

Hi!

That's how RANK works.

Try this:

=RANK($C49,$C$49:$C$62,1)+COUNTIF($C$49:$C49,$C49)-1

The first instance of a tie will be ranked higher:

25 = 4
10 = 1
10 = 2
22 = 3

Biff

"Todd Nelson" wrote in message
...
What is the formula to use that when ranking and two numbers are the
same
it
will just assign it the next numerical value. I am
using"=RANK($C49,$C$49:$C$62,1)" some cells automatically will go to
the
next
number, however most will not. I am throroughly confused!!!








Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
2 Nesting questions Starchaser Excel Worksheet Functions 7 January 20th 06 06:53 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


All times are GMT +1. The time now is 06:23 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"