Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hello,
I have a table with different values and a column in which the same values are per group.
If now the target which has an x is completed, all others of the same group including the completed rows should be filtered out.
Example: The last three rows have an x and are completed. If a row with an X is completed, all rows with the same value should also be filtered.
Is this possible?
I'm really at the end of my knowledge 😞
Kind regards
Thomas
hello, @-ThomasHermann filter your table (Col_J = "x" and Col_O = "completed"), extract those IDs and filter your original table once again by Col_P. Smth like this
completed = List.Buffer(
List.Distinct(
Table.SelectRows(
your_table,
each [Col_J] = "x" and [Col_O] = "completed"
)[Col_P]
)
),
filter = Table.SelectRows(
your_table,
each List.Contains(completed, [Col_P])
)
Hi @-ThomasHermann ,
What is the expected output of the above sample? You may also simulate the output in Excel and post screenshots.
Suggest copying the table content directly and posting it to help other users engage with the issue more quickly.
How to provide sample data in the Power BI Forum
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum -- China Power BI User Group
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.