Forum Discussion
Anonymous
2 years agoNot applicable
Using RLS employee should see data for his organizational group as well as all his reportees data
Below is the Employee table showing Emp id , emp name email,Organization group, manager id , name and email. Each employee is assigned to more than one group (here 2 groups). Another is the sa...
- 2 years ago
Hi Anonymous
This should be model
This should be Joins between tables:
Table DAX Code:
1. DISTINCT_EMP = DISTINCT(Employee[Employee Email])2. BRIDGE =VAR TABLE1 =SUMMARIZECOLUMNS(Employee[Employee Email],Employee[Manager Email])VAR TABLE2 =SUMMARIZE(Employee,Employee[Employee Email],"Manager Email", Employee[Employee Email])RETURNUNION(TABLE1,TABLE2)3. BRIDGE1 = DISTINCT_EMPPlease check this "Apply Security Filter on Both Sides" when joining BRIDE and BRIDGE1In Manage Roles:
Hope I answered your RLS. If so, please provide Kudos and encourage me.
Chakravarthy
2 years agoResolver II
Anonymous When I select "Leia Organa" It is showing "Kylo Ren" and "Darth Maul" Below is the screenshot
Anonymous
2 years agoNot applicable
Hi Chakravarthy , I have created tables and relatioship as shown by you. But it is not working.
Not sufre where it goes wrong.
Could you please send your .pbix file to refer?