5 highest values with multiple criterias and possible tie

wixie

New Member
Joined
May 23, 2018
Messages
14
Hi, looked for forum to find answer for my question but didn't manage to find solution. I would like to find 5 top values from data, based on certain criteria. I also need way to present results, if there is a tie between 2 values, when status is same for both (for example companies: Foxtrot and India).
I need to export the data from excel to some other softwares, so visual sorting isnt option. I think that the functions for: F3 and G3 are the most important (that's why i blurred the lats 3 columns of this example).

I have tried the LARGE and SMALL functions, but my brains just explodes...

Here is an example to descibre my problem in a case that Deal status is O:
ABCDEFGHI
J
K
1ValueCompanyStatusDeals OpenDeals Lost


2123 456AlfaLostNo:ValueCompanyNo:
Value
Company
311 000BetaWon1.1


412 500CharlieOpen2.2.


5123 456DeltaLost3.3.


6200 050FoxtrotOpen4.4.


7290 321GolfOpen5.5.


8123 543HotelWon


9200 050IndiaOpen


10125 076JuliettWon




<tbody>
</tbody>
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Upvote 0
The formulas contains specific data range... from A2-A10 but I need to include all data from column A. Data will be changed monthly, so the amount of rows will vary. I tried to swithc it to $A:$A but didn't help :/

Any advice how to modify formula ?

Define Lrow in the Name Manager as referring to:

=MATCH(9.99999999999999E+307,Sheet1!$A:$A)

Define Value in the Name Manager as referring to:

=Sheet1!$A$2:INDEX(Sheet1!$A:$A,Lrow)

Define Company in the Name Manager as referring to:

=Sheet1!$B$2:INDEX(Sheet1!$B:$B,Lrow)

Define Status in the Name Manager as referring to:

=Sheet1$C$2:INDEX(Sheet1!$C:$C,Lrow)

Define Ivec (from integer vector) as referring to:

=ROW(Value)-ROW(INDEX(Value,1,1))+1

The foregoing definitions makes the set up dynamic, i.e. self-adjusting.

The formulas now become...

In G1 just enter:

=MIN(COUNTIFS(Status,"open"),F1)

In E3 just enter and copy down:

=IF($F3="","",ROWS($F$3:F3))

In F3 control+shift+enter, not just enter, and copy down:

=IF(ROWS($F$3:F3)>$G$1,"",LARGE(IF(Status="open",Value),ROWS($F$3:F3)))

In G3 control+shift+enter, not just enter, and copy down:

=IF($F3="","",INDEX(Company,SMALL(IF(Status="open",IF(Value=$F3,Ivec)),COUNTIFS($F$3:F3,F3))))

In K1 just enter:

=MIN(COUNTIFS(Status,"lost"),F1)

In I3 just enter and copy down:

=IF($J3="","",ROWS($J$3:J3))

In J3 control+shift+enter, not just enter, and copy down:

=IF(ROWS($J$3:J3)>$K$1,"",LARGE(IF(Status="lost",Value),ROWS($J$3:J3)))

In K3 control+shift+enter, not just enter, and copy down:

=IF($J3="","",INDEX(Company,SMALL(IF(Status="lost",IF(Value=$J3,Ivec)),COUNTIFS($J$3:J3,J3))))
 
Upvote 0
Hmm, this is bit more higher level knowledge than I got used to :D

Shouldn't I always pick active one of the cells before i can use Name Manager? Just wondering which to pick. Tried to actiave A-columng for Lrow and it didnt end up too well.
 
Upvote 0
Actually, i managed to find solution that is simpler, I just define the range from A2:A10 to A2:A999 or something :)
 
Upvote 0
Actually, i managed to find solution that is simpler, I just define the range from A2:A10 to A2:A999 or something :)

That's ok, but it's not that difficult to manage the definitions.

1. Go to Formulas | Name Manager
2. Activate the New tab.
3. Type the name you want to define in the Name box.
4. Type the definition in the Refers to box.
5. Click OK.

Adjust the sheet name before you type in the definition.
 
Upvote 0
Thank you for that advice, I need to bookmark this page. I already got the solution work but when i used real data. I found out that there are cells without data.
I thought that i Ishould add IFERROR-function to beginning of formula at G3


This is from your first post:

=IF($F3="","",INDEX($B$2:$B$10,SMALL(IF($C$2:$C$10="open",IF($A$2:$A$10=$F3,ROW($B$2:$B$10)-ROW($B$2)+1)),COUNTIFS($F$3:F3,F3))))

So i thought it should be like this:

=IFERROR($F3="","",INDEX($B$2:$B$10,SMALL(IF($C$2:$C$10="open",IF($A$2:$A$10=$F3,ROW($B$2:$B$10)-ROW($B$2)+1)),COUNTIFS($F$3:F3,F3))),"")

But it doesn't seem to work.
 
Upvote 0
Thank you for that advice, I need to bookmark this page. I already got the solution work but when i used real data. I found out that there are cells without data.
I thought that i Ishould add IFERROR-function to beginning of formula at G3


This is from your first post:

=IF($F3="","",INDEX($B$2:$B$10,SMALL(IF($C$2:$C$10="open",IF($A$2:$A$10=$F3,ROW($B$2:$B$10)-ROW($B$2)+1)),COUNTIFS($F$3:F3,F3))))

So i thought it should be like this:

=IFERROR($F3="","",INDEX($B$2:$B$10,SMALL(IF($C$2:$C$10="open",IF($A$2:$A$10=$F3,ROW($B$2:$B$10)-ROW($B$2)+1)),COUNTIFS($F$3:F3,F3))),"")

But it doesn't seem to work.


What does the formula deliver in that case?
 
Upvote 0
My office is in finnish but before my attempt to fix the formula, i get "missing"-note (PUUTTUU in finnish). when i try to fix the code, i get the popup that tells that there is error in this formula and = 1+1 should be 2, and it advices me to check the formula. And yes, i pressed CTRL+SHIFT+ENTER

:)

In my real formula it looks this:
Code:
=JOSVIRHE($F3="";"";INDEKSI('[pipedrive_data.xlsx]deals list'!$D$2:$D$500;PIENI(JOS('[pipedrive_data.xlsx]deals list'!$L$2:$L$500="open";JOS('[pipedrive_data.xlsx]deals list'!$C$2:$C$5009=$F3;RIVI('[pipedrive_data.xlsx]deals list'!$D$2:$D$500)-RIVI('[pipedrive_data.xlsx]deals list'!$D$2)+1));LASKE.JOS.JOUKKO($F$3:F3;F3))),"")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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