lookup with paramaters

tlindeman

Active Member
Joined
Jun 29, 2005
Messages
313
I have a list of my running times on sheet, "WORKOUT" and then a list of times for the actual race on "half marathon" What I would like to do is lookup my time on my workout and find what place I would have been in on half marathon. Obviously my time will not correspond exaclty so I can't use vlookup. For eaxample, my time was 11:08:13 and on the half marathon this falls exactly between 221 and 222. Is there a way to do this?

Thank You
Tony
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
You can use MATCH.
Say your time is in B3, and the half-marathon times are (sorted) from D2:D2500.
=MATCH(B3,D2:D2500,1) will give the position of the person who just beat you.
=MATCH(B3,D2:D2500,-1) will give the position of the person who you just beat.

Denis
 
Upvote 0

Forum statistics

Threads
1,224,542
Messages
6,179,424
Members
452,914
Latest member
echoix

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