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

The Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more

Reply
BekahLoSurdo
Resolver IV
Resolver IV

DAX Code to Power Query

Is there a way to add a cloumn to a table in Power Query that contains the aggregate of a partition of another column?

 

For example I have:

GroupValueColor
A1Red
A2Orange
A3Yellow
A4Green
A5Blue
B6Purple
B7Red
B8Orange
B9Yellow
B10Green

 

I need the max Value per Group (without losing the granularity of Color):

GroupValueColorMaxGroupValue
A1Red5
A2Orange5
A3Yellow5
A4Green5
A5Blue5
B6Purple10
B7Red10
B8Orange10
B9Yellow10
B10Green10

 

In DAX, I can add a column and use:

MaxGroupValue = 
CALCULATE ( 
    MAX ( Table[Value] ),
    ALLEXCEPT ( Table, Table[Group] )
)

If there a way to do it in Power Query in one add-a-column step? I do not want to do a Group By (lose the Color granularity) and then have to merge back to the original table due to performance concerns.

 

Thank you!

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

As a custom column try this

=let mygroup=[Group] in
List. Max(
Table. SelectRows(source, each [Group] =mygroup) [Value])

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

As a custom column try this

=let mygroup=[Group] in
List. Max(
Table. SelectRows(source, each [Group] =mygroup) [Value])

Perfect, thank you!! This helps so much!

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.

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.