Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.