1
votes

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

1

1 Answers

0
votes

try:

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

3