Home > Enterprise >  How to transpose multiple columns and repeat specific cells
How to transpose multiple columns and repeat specific cells

Time:08-13

Is there a way to Split strings in a google sheet cell into multiple rows?

Example:

Example image

CodePudding user response:

use:

=INDEX(IFERROR(SPLIT(FLATTEN(FLATTEN(
 FILTER(A2:A; A2:A<>"")&"×"&TRANSPOSE(
 FILTER(B2:B; B2:B<>"")))&"×"&TRANSPOSE(
 FILTER(C2:C; C2:C<>""))), "×")))

enter image description here

  • Related