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
bkermen
Advocate I
Advocate I

Filtering a table based on the maximum value of a column

Hi,

 

I want to filter a table so that I keep those rows that have the maximum value in a column. For example, I have:

 

NameCol 2Col 3Col 4Revision no
A......0
A......1
A......2
B......0
B......1
C......0
D......0

 

After filtering; I want:

 

NameCol 2Col 3Col 4Revision no
A......2
B......1
C......0
D......0

 

Is there a simple way of avhieving this result?

1 ACCEPTED SOLUTION
v-angzheng-msft
Community Support
Community Support

Hi, @bkermen 

Try this:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUTIEYiMgNgZiA6VYHYgoTMQErAImChMxBasAiTphNcEJqwnOWNW6YIrGAgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Name = _t, #"Col 2" = _t, #"Col 3" = _t, #"Col 4" = _t, #"Revision no" = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Name", type text}, {"Col 2", type text}, {"Col 3", type text}, {"Col 4", type text}, {"Revision no", Int64.Type}}),

    
    T2=Table.Group(#"Changed Type", {"Name"}, {{"max", each List.Max([Revision no]), type nullable number}}),
    #"Merged Queries" = Table.NestedJoin(#"Changed Type", {"Name", "Revision no"}, T2, {"Name", "max"}, "Table (2)", JoinKind.LeftOuter),
    #"Expanded Table (2)" = Table.ExpandTableColumn(#"Merged Queries", "Table (2)", {"max"}, {"Table (2).max"}),
    #"Filtered Rows" = Table.SelectRows(#"Expanded Table (2)", each ([#"Table (2).max"] <> null)),
    #"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"Table (2).max"})
in
    #"Removed Columns"

Result:

vangzhengmsft_0-1638846183959.png

 

Please refer to the attachment below for details. Hope this helps.

 

 

 

Best Regards,
Community Support Team _ Zeon Zheng


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

3 REPLIES 3
v-angzheng-msft
Community Support
Community Support

Hi, @bkermen 

Try this:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUTIEYiMgNgZiA6VYHYgoTMQErAImChMxBasAiTphNcEJqwnOWNW6YIrGAgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Name = _t, #"Col 2" = _t, #"Col 3" = _t, #"Col 4" = _t, #"Revision no" = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Name", type text}, {"Col 2", type text}, {"Col 3", type text}, {"Col 4", type text}, {"Revision no", Int64.Type}}),

    
    T2=Table.Group(#"Changed Type", {"Name"}, {{"max", each List.Max([Revision no]), type nullable number}}),
    #"Merged Queries" = Table.NestedJoin(#"Changed Type", {"Name", "Revision no"}, T2, {"Name", "max"}, "Table (2)", JoinKind.LeftOuter),
    #"Expanded Table (2)" = Table.ExpandTableColumn(#"Merged Queries", "Table (2)", {"max"}, {"Table (2).max"}),
    #"Filtered Rows" = Table.SelectRows(#"Expanded Table (2)", each ([#"Table (2).max"] <> null)),
    #"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"Table (2).max"})
in
    #"Removed Columns"

Result:

vangzhengmsft_0-1638846183959.png

 

Please refer to the attachment below for details. Hope this helps.

 

 

 

Best Regards,
Community Support Team _ Zeon Zheng


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

bkermen
Advocate I
Advocate I

@smpa01 This seems to work only if the values in the other columns (Col 2-4) are identical. What I actually want to do is to filter the data in Power Query Editor so that only the filtered rows are in the data model. 

smpa01
Super User
Super User

@bkermen  you can use a measure like this

Measure = CALCULATE(MAX('Table'[Revision no]),ALLEXCEPT('Table','Table'[Name]))

 

smpa01_0-1638468497436.png

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

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.