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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

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
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.