Hi,
I have an expression in a scurity filter for a main table. There is an orders table.
I want to show rows in the main table that have an order in the orders table that does not have an [Order Status] containing “Archived”.
[Outlet No] is the unique Id in the main table and it appears as a column in the orders table
So far I have
AND(IN([Outlet No],Orders[Outlet No]),
NOT(CONTAINS(ANY(SELECT(Orders[Order Status], ([Outlet No] = [_THISROW].[Outlet No]),“Archived”)))