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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
William_Moreno
Helper II
Helper II

rank in powerquery with criteria

Hi everybody, I've been facing problem to create a rank in PowerQuery (m-language) with criteria.

Could you help me?

 

Table1

DataUnitSkuQtyRank
2021-02-01New York100500100.5 
2021-02-01New York10060095.0 
2021-02-01New York10070090.0 
2021-02-01Los Angeles100500110.5 
2021-02-01Los Angeles100600100.0 
2021-02-01Los Angeles10070050.0 

 

Expected table

DataUnitSkuQtyRank
2021-02-01New York100500100.51
2021-02-01New York10060095.02
2021-02-01New York10070090.03
2021-02-01Los Angeles100500110.51
2021-02-01Los Angeles100600100.02
2021-02-01Los Angeles10070050.03

 

Thanks in advanced.

William M.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @William_Moreno ,

1. Open the Advanced Editor and place the following code.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjIwMtQ1MNI1MFTSUfJLLVeIzC/KBjINDQxMDQwgDD1TpVgdvErNwEotTfUMCKk0h6g0wKbSJ79YwTEvPTUntRjFBYZYXYCh2gzuXmLMhjjEFKw4FgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Data = _t, Unit = _t, Sku = _t, Qty = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Data", type date}, {"Unit", type text}, {"Sku", Int64.Type}, {"Qty", type number}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Unit"}, {{"flag", each _, type table [Data=nullable date, Unit=nullable text, Sku=nullable number, Qty=nullable number]}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each Table.AddIndexColumn([flag],"Index",1,1)),
    #"Removed Other Columns" = Table.SelectColumns(#"Added Custom",{"Custom"}),
    #"Expanded Custom" = Table.ExpandTableColumn(#"Removed Other Columns", "Custom", {"Data", "Unit", "Sku", "Qty", "Index"}, {"Custom.Data", "Custom.Unit", "Custom.Sku", "Custom.Qty", "Custom.Index"})
in
#"Expanded Custom"

2. Result.

vyangliumsft_0-1627888387310.png

 

 

Best Regards,

Liu Yang

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

2 REPLIES 2
Anonymous
Not applicable

Hi  @William_Moreno ,

1. Open the Advanced Editor and place the following code.

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjIwMtQ1MNI1MFTSUfJLLVeIzC/KBjINDQxMDQwgDD1TpVgdvErNwEotTfUMCKk0h6g0wKbSJ79YwTEvPTUntRjFBYZYXYCh2gzuXmLMhjjEFKw4FgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Data = _t, Unit = _t, Sku = _t, Qty = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Data", type date}, {"Unit", type text}, {"Sku", Int64.Type}, {"Qty", type number}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Unit"}, {{"flag", each _, type table [Data=nullable date, Unit=nullable text, Sku=nullable number, Qty=nullable number]}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each Table.AddIndexColumn([flag],"Index",1,1)),
    #"Removed Other Columns" = Table.SelectColumns(#"Added Custom",{"Custom"}),
    #"Expanded Custom" = Table.ExpandTableColumn(#"Removed Other Columns", "Custom", {"Data", "Unit", "Sku", "Qty", "Index"}, {"Custom.Data", "Custom.Unit", "Custom.Sku", "Custom.Qty", "Custom.Index"})
in
#"Expanded Custom"

2. Result.

vyangliumsft_0-1627888387310.png

 

 

Best Regards,

Liu Yang

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

amitchandak
Super User
Super User

@William_Moreno , I think this video from Curbal can help. - Add index to subgroups in Power Query

https://www.youtube.com/watch?v=7CqXdSEN2k4

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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