The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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"})