The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
i have my tabular model SSAS.
I have one organizacional hierarchy RLS and i want to put one more filter for RLS in another table.
And my user cant see any data because i think that use AND operator.
Can how to configure to be OR between this two cases ?
Thank you.
Solved! Go to Solution.
Hi @sima_ue031 ,
Based on your description, it seems that you have encountered an issue where a user is unable to see any data due to the application of multiple RLS filters that are using the default AND logic. You can configure RLS to apply OR logic between filters on different tables by following these steps:
If you have two tables and you want them to be visible when they satisfy any condition, you modify the dax expression, for example
[Table1FilterColumn] = "Value1" || [Table2FilterColumn] = "Value2"
Ensure that your RLS setup follows best practices, such as avoiding overly restrictive rules and verifying that users are correctly mapped to roles. You can find guidance on implementing RLS in Power BI, which is also applicable to SSAS, in the following documentation:
Power BI implementation planning: Report consumer security planning - Power BI | Microsoft Learn
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @sima_ue031 ,
Based on your description, it seems that you have encountered an issue where a user is unable to see any data due to the application of multiple RLS filters that are using the default AND logic. You can configure RLS to apply OR logic between filters on different tables by following these steps:
If you have two tables and you want them to be visible when they satisfy any condition, you modify the dax expression, for example
[Table1FilterColumn] = "Value1" || [Table2FilterColumn] = "Value2"
Ensure that your RLS setup follows best practices, such as avoiding overly restrictive rules and verifying that users are correctly mapped to roles. You can find guidance on implementing RLS in Power BI, which is also applicable to SSAS, in the following documentation:
Power BI implementation planning: Report consumer security planning - Power BI | Microsoft Learn
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly