The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
one = Table.ToList(
your_table,
(w) => List.TransformMany(
{w},
(x) => List.Skip(List.Split(x, 2)),
(x, y) => List.FirstN(x, 2) & y
)
),
two = Table.FromList(List.Combine(one), (x) => x, {"Name", "Phone", "Address", "State"})
one = Table.ToList(
your_table,
(w) => List.TransformMany(
{w},
(x) => List.Skip(List.Split(x, 2)),
(x, y) => List.FirstN(x, 2) & y
)
),
two = Table.FromList(List.Combine(one), (x) => x, {"Name", "Phone", "Address", "State"})