I am looking for a formula to select the value on the left column

celinesuzette

New Member
Joined
Aug 21, 2020
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi everyone,

I am looking for a formula to select the value on the left column
1598024859005.png


Here is an example of sheet. It represents the basket value of our customers. As you can see, Jaqueline & Pierre spent the same amount of money. Alphonse and Gertrude too.

In another tab, I used LARGE IF formula to automatically select the 4 highest basket value.

1598025465880.png

Problem is, I cannot use INDEX MATCH to find who are my best and beloved customers as it will only select the highest one.

As excell correctly identificate the 4 highest value, I guess it should be possible for him to give me the left cell value.

Any idea on how??
(please?)

Thanks in advance :)
Céline
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hi & welcome to MrExcel.
How about
+Fluff New.xlsm
ABCDE
1
2Jaqueline9900Jaqueline9900
3Pierre9900Pierre9900
4Suzette720Alphonse880
5Alphonse880Gertrude880
6Gertrude880
7
Main
Cell Formulas
RangeFormula
D2:E5D2=FILTER(A2:B6,B2:B6>=LARGE(B2:B6,4))
Dynamic array formulas.
 
Upvote 0
something like this?

CustomerValueValueCustomer
Jaqueline99009900Jaqueline,Pierre
Pierre9900880Alphonse,Gertrude
Alphonse880720Suzette
Gertrude880
Suzette720
 
Upvote 0
If your data is not sorted you can use
+Fluff New.xlsm
ABCDE
1
2Suzette720Jaqueline9900
3Alphonse880Pierre9900
4Gertrude880Alphonse880
5Jaqueline9900Gertrude880
6Pierre9900
7
8
Main
Cell Formulas
RangeFormula
D2:E5D2=SORT(FILTER(A2:B6,B2:B6>=LARGE(B2:B6,4)),2,-1)
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,214,885
Messages
6,122,085
Members
449,064
Latest member
MattDRT

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