Challenging question

ddl8

New Member
Joined
Jun 1, 2011
Messages
16
Hi guys,

Is there a formula that allows you to find say 4th biggest number in data that is not filtered by size?

# Value
Z comp 20
Y comp 30
A comp 5
T comp 15

I would need that cell would show Y comp. Is there any excel formula for that purpose? I know I can manually filter and look for 4th biggest number but I need it for a lot of different excell sheets so it will eat up a lot of time.

Any suggestions?

Thanks
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hi guys,

Is there a formula that allows you to find say 4th biggest number in data that is not filtered by size?

# Value
Z comp 20
Y comp 30
A comp 5
T comp 15

I would need that cell would show Y comp. Is there any excel formula for that purpose? I know I can manually filter and look for 4th biggest number but I need it for a lot of different excell sheets so it will eat up a lot of time.

Any suggestions?

Thanks

Your posts a little confusing, surely Y Comp is the largest? 30 is the biggest number?

If it's trully the 4th largest you need then change the 1 to 4 in the following formula

Excel Workbook
DE
24Z Comp20
25Y Comp30
26A Comp5
27T Comp15
28
29Y Comp
Sheet1
 
Upvote 0
Hello & Welcome to the Board,

Isn't the 30 actually the largest?

How about if you want to return the "y"...

=INDEX(A1:A4,MATCH(LARGE(C1:C4,1),C1:C4,0))
 
Upvote 0
If the OP actually meant the 4th smallest number, then the SMALL function would do it.
 
Upvote 0
Your posts a little confusing, surely Y Comp is the largest? 30 is the biggest number?

If it's trully the 4th largest you need then change the 1 to 4 in the following formula

Excel Workbook
DE
24Z Comp20
25Y Comp30
26A Comp5
27T Comp15
28**
29Y Comp*
Sheet1

Thanks man, it worked perfectly! Exactly what I was looking for!
 
Upvote 0
Welcome to the MrExcel board!
Thanks man, it worked perfectly! Exactly what I was looking for!
In that case it would appear that you were looking for the largest value, not the 4th largest value. That brings me to ..

One comment:
=INDEX(D24:D27,MATCH(MAX(E24:E27),E24:E27,0))
is probably a bit simpler.

And one question:
Is it possible that the largest number occurs more than once on the right, and if so, what result(s) would you want returned? eg This data

Excel Workbook
DE
24Z Comp20
25Y Comp30
26A Comp5
27T Comp30
Match Max
 
Upvote 0

Forum statistics

Threads
1,224,604
Messages
6,179,857
Members
452,948
Latest member
UsmanAli786

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