Rank Dates with Continuous Rank and no Tiebreaker

njkollauf

New Member
Joined
Sep 18, 2015
Messages
12
Hey guys,

I am having some trouble with ranking dates. I want to rank a data set in ascending order. With dates there could be a multitude of ties. Is there a way to rank the dates and keep the number rolling up based off order in the list being the "first"?

Ex:

Using "=RANK($K2,SoftDates,1)+(COUNTIF($K$2:$K1000,$K2)-1)"

The Data looks like this:
Soft RankSoft Date
28/25/2015
99/2/2015
38/28/2015
38/28/2015
48/31/2015
48/31/2015
48/31/2015
49/2/2015
49/2/2015
28/25/2015

<tbody>
</tbody>

When the ranks should actually look like this:
Soft RankSoft Date
18/25/2015
89/2/2015
38/28/2015
48/28/2015
58/31/2015
68/31/2015
78/31/2015
99/2/2015
109/2/2015
28/25/2015

<tbody>
</tbody>
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
The issue is that the rank formula doesn't take into account that the Rank 3 has always been used because another paid of data already used it for ranks 3 and a so what used to be rank 3 in the list now really should rank 5 and its matching partner should rank 6
 
Upvote 0
Row\Col
A​
B​
C​
1​
Soft Rank
Soft Date
2​
1​
08/25/2015​
A2: =RANK(B2, $B$2:$B$11, 1) + COUNTIF(B$1:B1, B2)
3​
8​
09/02/2015​
4​
3​
08/28/2015​
5​
4​
08/28/2015​
6​
5​
08/31/2015​
7​
6​
08/31/2015​
8​
7​
08/31/2015​
9​
9​
09/02/2015​
10​
10​
09/02/2015​
11​
2​
08/25/2015​
 
Upvote 0
Solved. My named ranges had wrong absolute references. I went with the Rank.EQ function too. Thanks!
 
Upvote 0

Forum statistics

Threads
1,215,740
Messages
6,126,585
Members
449,319
Latest member
iaincmac

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top