Returning 'greater than' from an array

FKalinx

New Member
Joined
Jul 2, 2014
Messages
39
Hi,

I am looking at returning a adjacent value that is 'less than' from an array. In this example I want to return what is in Column A where the value is less than 20.

So for instance

A B
Website 60
Facebook 59
Twitter 47
Email 52
Third Party 10

This would return 'Third Party'.

I have already tried a mix of MATCH and INDEX but can't get it to work.

I also want to do this for percentages:

A B
Website 60%
Facebook 59%
Twitter 47%
Email 52%
Third Party 10%

So if value is less than 15%, then return 'Third Party'.

Please advise!

Thanks
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
D1: 20

D3, control+shift+enter, not just enter, and copy down:
Rich (BB code):
=IFERROR(INDEX($A$2:$A$6, 
  SMALL(IF($B$2:$B$6 < D$1, ROW($B$2:$B$6) - ROW($B$2) + 1), 
  ROWS($D$3:D3))), "")
 
Upvote 0

Forum statistics

Threads
1,223,732
Messages
6,174,182
Members
452,550
Latest member
southernsquid2

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