Ranking lap times with 2 decimals

Lawrence Parker

New Member
Joined
Apr 21, 2019
Messages
2
So im trying to rank my lap times but i keep getting the error that my lap time is a text value and not a number value because it has two decimal places.

e.g
2.23.340 i get an error but 2.23 works.
is there a way to rank numbers with two decimal places.

Formula =RANK(D3:D27,LapTimes,1)

picture of my sheet
https://gyazo.com/4ef6b4384a66136d2b8846ccab78af57
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
More likely mm.ss.decimal seconds. So the example is probably 2 minutes 23.340 seconds.
 
Upvote 0
I think you may need a helper column to convert to time values before you can rank. Use this formula on each entry: =TIMEVALUE(SUBSTITUTE(D3,".",":",1))
It is up to you to format it as a time or leave it as a decimal. But you can now rank this helper column.
 
Upvote 0
How about

Excel 2013/2016
DE
2LaptimeRank
32.23.3402
43.10.6983
52.11.9691
Engine
Cell Formulas
RangeFormula
E3=SUMPRODUCT(--(TIMEVALUE(SUBSTITUTE(D3,".",":"))>TIMEVALUE(SUBSTITUTE(D$3:D$5,".",":"))))+1
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,730
Members
448,987
Latest member
marion_davis

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