Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Berean_50
Helper I
Helper I

How to group rows dynamically

Given the following input:

Berean_50_0-1639377547224.png

the goal is to produce the following output where the table is grouped by the static columns Name and Period. The challenging aspect of this task is that Category A, Category B, Category C are dynamic columns. There could be one or more columns by different names. That means we can't refer to these columns by name.

The desired output is the following:

Berean_50_1-1639377721752.png


Assumptions:

  1. Name and Period columns are always known and are used in the Group By.
  2. The variable columns will always start at position 3.
  3. There could be one or more dynamic columns.
  4. The last dynamic column (in this case, Category C) will always be the last column on the table.

I can produce the right results using Power Query UI to group rows. However, since I don't know what the dynamic columns are I would need to refer to the list of columns using column indexes. That's where the challenge is. Any help on how to get the desired results would be hugely appreciated.

Here's the source test file:

https://1drv.ms/x/s!AuHocvOERo6IhNoIl4d1ax2SjTgXSA?e=uO4bd5



 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

How about this?

 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    DynamicColumns = List.RemoveItems(Table.ColumnNames(Source), {"Name", "Period"}),
    #"Grouped Rows" = Table.Group(Source, {"Name", "Period"},
        List.Transform(DynamicColumns, (col) => {col, each List.Max(Table.Column(_, col)), type text}))
in
    #"Grouped Rows"

 

This takes the column names other than "Name" and "Period" and maxes over them in a Group By step.

View solution in original post

3 REPLIES 3
AlexisOlson
Super User
Super User

How about this?

 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    DynamicColumns = List.RemoveItems(Table.ColumnNames(Source), {"Name", "Period"}),
    #"Grouped Rows" = Table.Group(Source, {"Name", "Period"},
        List.Transform(DynamicColumns, (col) => {col, each List.Max(Table.Column(_, col)), type text}))
in
    #"Grouped Rows"

 

This takes the column names other than "Name" and "Period" and maxes over them in a Group By step.

@AlexisOlson 
This is very clever piece of code. Brilliant! I learned something today. Unfortunately all I can afford is to say "Thank You".

Thingsclump
Resolver V
Resolver V

Hi @Berean_50 

 

For challenging part, I would recommend to rename 3rd, 4th and 5th column in PQ initially by referring position. You can use "Table.RenameColumns" using position. This way all steps downstream are not impacted. 

 

Thankyou

Thingsclump

www.thingsclump.com 

 

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.