How to split delimited into rows.
I tried using Power Query.
With Power Query I can do it only for 1 column.
If I select more than 1 column, the Split Column is disabled in the Power Query Editor.
Is there any other solution for splitting delimited into rows for more than one column?
This video offers three solutions.
Solution 1 is a formula such as =TEXTJOIN("|",,TEXTSPLIT(C2,",")&"-"&TEXTSPLIT(B2,",")) and then Power Query.
The 2nd solution is M code written by Suat Ozgur.
let
fnSplit = (row as record) =>
let
Invoice = row[Invoice],
Product = row[Products],
Qty = row[Quantities],
ProductList = Text.Split(Product, "," ),
QtyList = Text.Split(Qty, ",")...