Forum Discussion
Vicphuket
Nov 24, 2018Copper Contributor
EXcel SUMPRODUCT
=SUMPRODUCT((AGGREGATE(14,4,E2:Z2,ROW($1:$5)))/5) I have been using the above formula successfully to select the 5 largest numbers in a row of 35 numbers There are some 60 rows I now want to amend...
Detlef_Lewin
Nov 24, 2018Silver Contributor
Hello
For highlighting the top 9 values:
=E2>=AGGREGATE(14,6,$E2:$Z2,9)
- VicphuketDec 01, 2018Copper Contributor
The conditional format formula needs to be able to exclude duplicates over and above the 9 highest
eg:
If we have 12 numbers like this 40,40,40,40,40,40,40,40,40,40,40,40 the format formulae must select only 9 of the highest
Vic
- Detlef_LewinDec 01, 2018Silver Contributor
=E2+COLUMN(E2)%%%>=AGGREGATE(14,6,$E2:$Z2+COLUMN($E2:$Z2)%%%,9)
- SergeiBaklanDec 02, 2018MVP
Great idea. And if color from left to right
=E2+(1/COLUMN(E2))%%%>=AGGREGATE(14,6,$E2:$Z2+(1/COLUMN($E2:$Z2))%%%,9)