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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
kikobi23
New Member

CALCULATIONPOWERQUERY

kikobi23_0-1699217998584.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @kikobi23 

Accroading the picture you have provided, do you want to calculate the value of the min id of each account?

e.g the min id of the accout 1 is 100, the min id of the account 2 is 130?

if you want to implement this, you can create a blank query and input the following code to advanced editor.

Sample data 

vxinruzhumsft_0-1699322985274.png

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUTI0MACRRqZKsTpQEUOwiDmSiJEBVCVIxAjENgaLmBkhREwgagwRIqYgESMTE6XYWAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Account = _t, ID = _t, Value = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Account", Int64.Type}, {"ID", Int64.Type}, {"Value", Int64.Type}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Account"}, {{"MinID", each List.Min([ID]), type nullable number}, {"Data", each _, type table [Account=nullable number, ID=nullable number, Value=nullable number]}}),
    #"Expanded Data" = Table.ExpandTableColumn(#"Grouped Rows", "Data", {"ID", "Value"}, {"ID", "Value"}),
    #"Added Custom" = Table.AddColumn(#"Expanded Data", "RelatedValue", each List.Min(Table.SelectRows(#"Expanded Data",(x)=>x[Account]=[Account] and x[ID]=[MinID])[Value])),
    #"Reordered Columns" = Table.ReorderColumns(#"Added Custom",{"Account", "ID", "Value", "MinID", "RelatedValue"})
in
    #"Reordered Columns"

 

Output

vxinruzhumsft_1-1699323224318.png

 

If the solution above cannot meet your requirment, can you provide some sample data and the output you want? 

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @kikobi23 

Accroading the picture you have provided, do you want to calculate the value of the min id of each account?

e.g the min id of the accout 1 is 100, the min id of the account 2 is 130?

if you want to implement this, you can create a blank query and input the following code to advanced editor.

Sample data 

vxinruzhumsft_0-1699322985274.png

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUTI0MACRRqZKsTpQEUOwiDmSiJEBVCVIxAjENgaLmBkhREwgagwRIqYgESMTE6XYWAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Account = _t, ID = _t, Value = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Account", Int64.Type}, {"ID", Int64.Type}, {"Value", Int64.Type}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Account"}, {{"MinID", each List.Min([ID]), type nullable number}, {"Data", each _, type table [Account=nullable number, ID=nullable number, Value=nullable number]}}),
    #"Expanded Data" = Table.ExpandTableColumn(#"Grouped Rows", "Data", {"ID", "Value"}, {"ID", "Value"}),
    #"Added Custom" = Table.AddColumn(#"Expanded Data", "RelatedValue", each List.Min(Table.SelectRows(#"Expanded Data",(x)=>x[Account]=[Account] and x[ID]=[MinID])[Value])),
    #"Reordered Columns" = Table.ReorderColumns(#"Added Custom",{"Account", "ID", "Value", "MinID", "RelatedValue"})
in
    #"Reordered Columns"

 

Output

vxinruzhumsft_1-1699323224318.png

 

If the solution above cannot meet your requirment, can you provide some sample data and the output you want? 

 

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.