dataKU
dataKU

Reputation: 3

How to use split text to column in Google Sheets

I want to split text in column:

enter image description here

This is link to my spreadsheet: https://docs.google.com/spreadsheets/d/1uSgHy_RR2Yk30eP0zq-K9W2f4_JgcuiEMDHGA-yQrRg/edit?usp=sharing

Upvotes: 0

Views: 642

Answers (1)

Harun24hr
Harun24hr

Reputation: 37050

Try below formula. See you google-sheet.

=QUERY(ArrayFormula(SPLIT(FLATTEN(SPLIT(A2:A4,", ")&"@"&B2:B4&"@"&C2:C4),"@")),"where Col3 is not null")

enter image description here

Upvotes: 0

Related Questions