Finding lowest three values

wayne0881

Board Regular
Joined
Nov 2, 2009
Messages
95
Office Version
  1. 2016
Platform
  1. Windows
Hi All,

I am looking to find and return some values.


in cells B4,B6,B8,B10,B12,B14 I have values 1,2,3,4,5,6 representing greyhound traps

in cells Q4,Q6,Q8,Q10,Q12,Q14 I have race times

What I would like to do in cells D,E,F 17 is to sort the times into the three lowest and return the values in the B cells

For example if the lowest three times were 31.00 (3),31.31(5),31.34(2)

I would like in D17=3 E17=5 F17=2

Thanks in advance :)
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
try
=INDEX($B$4:$B$14,MATCH(SMALL($Q$4:$Q$14,1),$Q$4:$Q$14,0))
for the smallest d17
=INDEX($B$4:$B$14,MATCH(SMALL($Q$4:$Q$14,2),$Q$4:$Q$14,0))
e17
=INDEX($B$4:$B$14,MATCH(SMALL($Q$4:$Q$14,3),$Q$4:$Q$14,0))
f17
 
Upvote 0
try
=INDEX($B$4:$B$14,MATCH(SMALL($Q$4:$Q$14,1),$Q$4:$Q$14,0))
for the smallest d17
=INDEX($B$4:$B$14,MATCH(SMALL($Q$4:$Q$14,2),$Q$4:$Q$14,0))
e17
=INDEX($B$4:$B$14,MATCH(SMALL($Q$4:$Q$14,3),$Q$4:$Q$14,0))
f17


Works a treat! nice one :)

Thanks
 
Upvote 0

Forum statistics

Threads
1,224,824
Messages
6,181,186
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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