Forum Discussion
How can I filter out changing data?
- Anonymous3 years ago
Hi mehlenbae2 ,
As far as I know, you just need to filter all types not in your group in "Breached by Assignment Group" column. Then Power BI will always remove these types after updating data.
As below code, add all types not in your groups in list like "Procurement"/"ServiceDesk"/"xxxx".
= Table.SelectRows(#"Changed Type1", each not(List.Contains({"Procurement","ServiceDesk","xxxx"},[Breached by Assignment Group] )))Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi mehlenbae2 ,
As far as I know, you just need to filter all types not in your group in "Breached by Assignment Group" column. Then Power BI will always remove these types after updating data.
As below code, add all types not in your groups in list like "Procurement"/"ServiceDesk"/"xxxx".
= Table.SelectRows(#"Changed Type1", each not(List.Contains({"Procurement","ServiceDesk","xxxx"},[Breached by Assignment Group] )))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.