2

I'm looking for an arrayformula to split and transpose all comma-separated values into a single column.

See my sheet here:

https://docs.google.com/spreadsheets/d/1RYOlt2HmE1oC31nGhRtpU5mu3mg0gz7UK9-exMVKQlA/edit?usp=sharing

player0
  • 124,011
  • 12
  • 67
  • 124
chappers
  • 466
  • 1
  • 6
  • 17

1 Answers1

1

try:

=TRANSPOSE(SPLIT(TEXTJOIN(",", 1, A:A), ","))

3

player0
  • 124,011
  • 12
  • 67
  • 124