Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I have to filter the report based on the branches the user has access to. I have a table called BRANCHESLIST which carries the information of branch numbers and user emails.
ASSETSETUPVIEW is the table I want to filter. Using filter directly on RLS throws an error:
I created a measure
and then used RLS which gives the following error:
How can I filter the table in this scenario?
Solved! Go to Solution.
Hi @Anonymous ,
You can place the following code:
var UPN=USERPRINCIPALNAME()
var UserRow=
CALCULATETABLE(
'BRANCHESLIST',
'BRANCHESLIST'[EMAAIL_FW]=UPN)
var Flag=
SELECTCOLUMNS(
UserRow,'BRANCHESLIST'[COSTCENTER])
var Result=
FILTER(
'ASSETSETUPVIEW','ASSETSETUPVIEW'[COSTTCENTRE_FW] in Flag)
RETURN
IF(
'ASSETSETUPVIEW'[COSTTCENTRE_FW] in Flag,TRUE(),FALSE())
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You can place the following code:
var UPN=USERPRINCIPALNAME()
var UserRow=
CALCULATETABLE(
'BRANCHESLIST',
'BRANCHESLIST'[EMAAIL_FW]=UPN)
var Flag=
SELECTCOLUMNS(
UserRow,'BRANCHESLIST'[COSTCENTER])
var Result=
FILTER(
'ASSETSETUPVIEW','ASSETSETUPVIEW'[COSTTCENTRE_FW] in Flag)
RETURN
IF(
'ASSETSETUPVIEW'[COSTTCENTRE_FW] in Flag,TRUE(),FALSE())
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.