Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a file where each group of entries on a given date is separated by two headers: one with the date and another with the location (in italics and underline below):
Obviously, I want to pull the date and location data out as additional columns and fill each row of those new columns with the corresponding data. There is no set number of entries between each grouping.
Solved! Go to Solution.
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Account", type any}, {"Amount", type number}, {"Customer", type text}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"Account"},
{{"Rows",
each
let
ct = Table.RowCount(_)
in
Table.FromColumns(
Table.ToColumns(Table.Skip(_,2))
& {List.Repeat({_[Account]{0}},ct-2)}
& {List.Repeat({_[Account]{1}},ct-2)},
Table.ColumnNames(_) & {"Date","Location"}
)
}},
GroupKind.Local,
(x,y) => Byte.From(try Date.From(y[Account]) is date otherwise 0)
)
in
#"Grouped Rows"
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Account", type any}, {"Amount", type number}, {"Customer", type text}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"Account"},
{{"Rows",
each
let
ct = Table.RowCount(_)
in
Table.FromColumns(
Table.ToColumns(Table.Skip(_,2))
& {List.Repeat({_[Account]{0}},ct-2)}
& {List.Repeat({_[Account]{1}},ct-2)},
Table.ColumnNames(_) & {"Date","Location"}
)
}},
GroupKind.Local,
(x,y) => Byte.From(try Date.From(y[Account]) is date otherwise 0)
)
in
#"Grouped Rows"
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.