Forum Discussion
AeroSteve
May 25, 2022Copper Contributor
Limit length of spill formulas, without errors, but error with IFERROR :-)
I have a set of data that I would like to: 1) filter for particular data - easily accomplished using FILTER. 2) sort according to particular data - easily accomplished using SORT. 3) limit the ret...
- May 25, 2022
AeroSteve Let's say the array you want to pick the top 10 (or fewer) from is in A1#, try this:
=INDEX(A1#,SEQUENCE(MIN(COUNTA(A1#),10)))
Riny_van_Eekelen
May 25, 2022Platinum Contributor
AeroSteve Let's say the array you want to pick the top 10 (or fewer) from is in A1#, try this:
=INDEX(A1#,SEQUENCE(MIN(COUNTA(A1#),10)))- AeroSteveMay 26, 2022Copper ContributorAhh, that'll do it. Thanks Riny