Forum Discussion

dshawSLDC's avatar
dshawSLDC
Brass Contributor
Jun 19, 2021

Excel Spill Row Split

I am wondering if there is away to Split the Spill that comes from the Following ARRAY. =SORT(FILTER(FILTER(TableHLP,TableHLP[District]=$A$7),{1,1,0,0,0,0,0,0}),1) It produces a list of names and s...
  • SergeiBaklan's avatar
    Jun 19, 2021

    dshawSLDC 

    On each sheet you may use formulas like

    =LET(k, SEQUENCE(ROWS(array)),
         r, IF( (k >= minN)*(k <= maxN),
                INDEX(array,k),
                "remove"),
         FILTER(r, r <> "remove"))

Share