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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
PZUDGW
Helper I
Helper I

Aggregate table for dataflow

I'd like to aggregate a table for my dataflow.  The table is down below. I'd like to have:

  • for each distinct REFOBJECT ID,
  • the latest PMCVALIDFROM,
  • and corresponding PMCRENTAMOUNT + PMCSCORINGPOINT

Can I use the option 'Group by' and if so, how?

Knipsel.JPG

1 ACCEPTED SOLUTION
Jimmy801
Community Champion
Community Champion

Hello @PZUDGW 

 

use Table.Group and within the group-function Table.Max to get your desired result. Here an example

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUTI01jM01DMyADHBOFYHKmEBlzACY7iEqZ6hEUTCGIxBEk5AloGFnoGhnqElilEwCSOIBMIoJ4jlBsYQCahRsQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"REFOBJECT ID" = _t, PMCVALIDFROM = _t, PMCRENTAMOUNT = _t, PMCSCORINGPOINT = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"REFOBJECT ID", type text}, {"PMCVALIDFROM", type date}, {"PMCRENTAMOUNT", Int64.Type}, {"PMCSCORINGPOINT", Int64.Type}}, "de-DE"),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"REFOBJECT ID"}, {{"LastVALIDFROMROW", each Table.Max(_, "PMCVALIDFROM"), type record}}),
    #"Expanded LastVALIDFROMROW" = Table.ExpandRecordColumn(#"Grouped Rows", "LastVALIDFROMROW", {"PMCVALIDFROM", "PMCRENTAMOUNT", "PMCSCORINGPOINT"}, {"PMCVALIDFROM", "PMCRENTAMOUNT", "PMCSCORINGPOINT"})
in
    #"Expanded LastVALIDFROMROW"

 

Copy paste this code to the advanced editor in a new blank query to see how the solution works.

If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

View solution in original post

2 REPLIES 2
PZUDGW
Helper I
Helper I

Works great!

 

Thanks for your help

Jimmy801
Community Champion
Community Champion

Hello @PZUDGW 

 

use Table.Group and within the group-function Table.Max to get your desired result. Here an example

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUTI01jM01DMyADHBOFYHKmEBlzACY7iEqZ6hEUTCGIxBEk5AloGFnoGhnqElilEwCSOIBMIoJ4jlBsYQCahRsQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"REFOBJECT ID" = _t, PMCVALIDFROM = _t, PMCRENTAMOUNT = _t, PMCSCORINGPOINT = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"REFOBJECT ID", type text}, {"PMCVALIDFROM", type date}, {"PMCRENTAMOUNT", Int64.Type}, {"PMCSCORINGPOINT", Int64.Type}}, "de-DE"),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"REFOBJECT ID"}, {{"LastVALIDFROMROW", each Table.Max(_, "PMCVALIDFROM"), type record}}),
    #"Expanded LastVALIDFROMROW" = Table.ExpandRecordColumn(#"Grouped Rows", "LastVALIDFROMROW", {"PMCVALIDFROM", "PMCRENTAMOUNT", "PMCSCORINGPOINT"}, {"PMCVALIDFROM", "PMCRENTAMOUNT", "PMCSCORINGPOINT"})
in
    #"Expanded LastVALIDFROMROW"

 

Copy paste this code to the advanced editor in a new blank query to see how the solution works.

If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

Helpful resources

Announcements
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.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors