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
mlsx4
Memorable Member
Memorable Member

Help with Group By

Hello everyone.

 

Let's say I have a table like this, where I need to remove all rows related with workers which doesn't have any True value in status. How can I achieve this behaviour?

Worker ID Column1 Column2 Status
1 a e False
1 b r True
1 c f False
2 d g False
2 e y False
2 g u False
3 as o False
3 g p False
3 ba ñ False
4 n . False
4 n s False
4 ge d False
4 y z True

 

I have seen solutions about merging between the own table and so on, but it has a real bad performance due to the size of the table.

 

Thank you in advance!!

1 ACCEPTED SOLUTION
AlienSx
Super User
Super User

Hello, @mlsx4 

let
    Source = your_table_like_this,
    group = Table.Group(Source, "Worker ID", {{"wid", each _}}), 
    select = Table.SelectRows(group, (x) => List.AnyTrue(x[wid][Status])),
    expand = Table.ExpandTableColumn(select, "wid", {"Column1", "Column2", "Status"})
in
    expand

View solution in original post

2 REPLIES 2
AlienSx
Super User
Super User

Hello, @mlsx4 

let
    Source = your_table_like_this,
    group = Table.Group(Source, "Worker ID", {{"wid", each _}}), 
    select = Table.SelectRows(group, (x) => List.AnyTrue(x[wid][Status])),
    expand = Table.ExpandTableColumn(select, "wid", {"Column1", "Column2", "Status"})
in
    expand
mlsx4
Memorable Member
Memorable Member

Brilliant, as always!

 

Thank you so much @AlienSx 

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.