Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
the excel contains always 3 dates, I want the header to return per date
I can manage to insert an empty row per car per date
but copying the header does not work
in attachment small example where column H to K is the desired one
let
Bron = Excel.CurrentWorkbook(){[Name="Tabel1"]}[Content],
#"Type gewijzigd" = Table.TransformColumnTypes(Bron,{{"datum", type date}, {"wagen", type text}, {"omschrijving", type text}, {"chauffeur", type text}}),
Samen = Table.AddColumn(#"Type gewijzigd", "Samengevoegd", each Text.Combine({Text.From([datum], "nl-BE"), [wagen]}, " "), type text),
cols = Table.ColumnNames(Samen),
grp = Table.Group(Samen, {"Samengevoegd"}, {{"Count", each Table.InsertRows(_,Table.RowCount(_), {Record.FromList(List.Repeat({null},Table.ColumnCount(_)),cols)} )}}),
delCol = Table.RemoveColumns(grp,{"Samengevoegd"}),
Toe_leeg = Table.ExpandTableColumn(delCol, "Count", cols, cols),
Kol_verw = Table.RemoveColumns(Toe_leeg,{"Samengevoegd"})
in
Kol_verw
Solved! Go to Solution.
Hi @KrisMoens, I recommend you to read about Freeze Panes in Excel - I believe this will solve your issue.
Hi @KrisMoens, I recommend you to read about Freeze Panes in Excel - I believe this will solve your issue.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
8 | |
8 | |
7 |
User | Count |
---|---|
17 | |
13 | |
7 | |
6 | |
6 |