Heya ..
I hope someone can take this challenge. I am tryig to return a cell value when having the highest value in a next column using multiple conditions - knowing I can have duplicate values.
I'm looking for a solution without VBA
Let's say I have the table as below.
I want a formula returning the the cell value from column B from the table line having the highest value in column C - but only considering lines where A = GURS and D = 0
What I already tried but is unsuccessful:
=INDEX(B:B,MATCH(LARGE(FILTER(C:C,A:A="GURS"),1),C:C*($H$2=A:A),0)) - but that is missing the second condition column D=0
=MAXIFS(C:C,D:D,0,A:A,"GURS") - which returns the expected value but using that in an index - match fails since all of the columns can have duplicates
Note the combination of A & B is unique, meaning there is only one "Genkis" of type (Column A) GURS, but multiple lines can have same C/D values
I hope someone can take this challenge. I am tryig to return a cell value when having the highest value in a next column using multiple conditions - knowing I can have duplicate values.
I'm looking for a solution without VBA
Let's say I have the table as below.
I want a formula returning the the cell value from column B from the table line having the highest value in column C - but only considering lines where A = GURS and D = 0
What I already tried but is unsuccessful:
=INDEX(B:B,MATCH(LARGE(FILTER(C:C,A:A="GURS"),1),C:C*($H$2=A:A),0)) - but that is missing the second condition column D=0
=MAXIFS(C:C,D:D,0,A:A,"GURS") - which returns the expected value but using that in an index - match fails since all of the columns can have duplicates
Note the combination of A & B is unique, meaning there is only one "Genkis" of type (Column A) GURS, but multiple lines can have same C/D values