Forum Discussion
chastain1337
Dec 10, 2019Copper Contributor
Limiting the length of results from Dynamic / Spill Arrays
I am trying to figure out a way to limit the number of results returned from a dynamic array such as =UNIQUE or =FILTER. So for example, say I want to only want to return the first 10 unique values f...
- Dec 10, 2019
= INDEX( UNIQUE(ColumnA), SEQUENCE(10) )
would return 10 values and
= INDEX( UNIQUE(ColumnA), SEQUENCE(1,10) )
would transpose the result array.
PeterBartholomew1
Dec 10, 2019Silver Contributor
= INDEX( UNIQUE(ColumnA), SEQUENCE(10) )
would return 10 values and
= INDEX( UNIQUE(ColumnA), SEQUENCE(1,10) )
would transpose the result array.
chastain1337
Dec 11, 2019Copper Contributor
Peter,
That did the trick! Thanks for the help.
That did the trick! Thanks for the help.