Forum Discussion

Asparagus's avatar
Asparagus
Brass Contributor
Oct 18, 2022
Solved

Is there a way to Auto SPILL cells with 8 letters (characters) not including spaces from a list

I have a list from A2  to A11 with random words, some cells have single words some have more. I would like to grab all the cells with 8 letters/characters (not counting the spaces) and have them spil...
  • PeterBartholomew1's avatar
    Oct 18, 2022

    Asparagus

    I would suggest

    = LET(
        charCount, LEN(SUBSTITUTE(List," ","")),
        FILTER(List, charCount=8)
      )

    It is obviously possible to substitute charCount in the FILTER formula but, to my mind, the result is less readable despite being shorter.

     

     

Resources