Forum Discussion

chastain1337's avatar
chastain1337
Copper Contributor
Dec 10, 2019
Solved

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...
  • PeterBartholomew1's avatar
    Dec 10, 2019

    chastain1337 

     

    = INDEX( UNIQUE(ColumnA), SEQUENCE(10) )

    would return 10 values and 

    = INDEX( UNIQUE(ColumnA), SEQUENCE(1,10) )

    would transpose the result array.

     

Resources