Forum Discussion
ea0428
Jul 13, 2022Copper Contributor
Index Match
I need to find a way to find a way to use index match or another lookup function to pull the 1st, 2nd, 3rd, 4th, 5th largest number from a data set based on a criteria. For example, I want to find th...
SergeiBaklan
Jul 13, 2022Diamond Contributor
ea0428
Jul 14, 2022Copper Contributor
SergeiBaklan that just returns me "--"
- ea0428Jul 14, 2022Copper ContributorThere are some #n/a in column AO is this what could be throwing it off?
- SergeiBaklanJul 14, 2022Diamond Contributor
If so - yes. You may clean it like
=LET( class, IFERROR( AO2:AO100, ""), value, IFERROR( AP2:AP100, -1E+40), IFERROR( LARGE( FILTER(value, class="Fixed income"), SEQUENCE(5) ), "--" ) )