Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Dear Experts,
I have agent scorecord report and want to implement Dynamic row level Security.
Hierarchy is : Agent --> Supervisor --> Manger --> Director
When Agent Login and he can able to his data only
When Supervisor/Manager/Director Logins, We want to show the under his employees.
Below Screenshot is not applied Security:
133--> Total employees at the Same job level.
when row Leve security enabled
1--> Total employees at the Same job level.
here we want to show 133 instead 1.
Dax Measure:
Solved! Go to Solution.
Hi @basirve ,
You can compose a new table of people information as a slicer and create a MEASURE similar to the following:
result_ =
VAR sel_ =
SELECTEDVALUE ( Slier[Person] )
RETURN
IF (
sel_ = MAX ( Test[Agent] ),
[result_Agent],
IF ( sel_ = MAX ( Test[Manger] ), [result_Manger], BLANK () )
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi v-kongfanf-msft,
We have to compare the Rank too based On the score (It is defined with multiple fact tables.)
Note: Agent Table connect with Multiple Fact table and when we applied the Row Level security it is filtered the data and for other User are filtered out.
Thanks & Regards,
Venkat.
Hi @basirve ,
You can compose a new table of people information as a slicer and create a MEASURE similar to the following:
result_ =
VAR sel_ =
SELECTEDVALUE ( Slier[Person] )
RETURN
IF (
sel_ = MAX ( Test[Agent] ),
[result_Agent],
IF ( sel_ = MAX ( Test[Manger] ), [result_Manger], BLANK () )
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.