Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Solved! Go to Solution.
Hi @Anonymous ,
Two ways.
1 add one more row to user table.
Then RLS filter DAX:
User:
[UserEmail] = username() || [UserEmail] = "all"
TARIFF:
[ConsignorID] = "00000"
||
[ConsignorID] in values('User'[ConsignorID])
Result:
2 Detele the relationship between these two tables and RLS Filter DAX:
User:
[UserEmail] = username()
TARIFF:
[ConsignorID] = "00000"
||
[ConsignorID] in calculatetable(values('User'[ConsignorID]),filter('User',[UserEmail] = username()))
Result:
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Two ways.
1 add one more row to user table.
Then RLS filter DAX:
User:
[UserEmail] = username() || [UserEmail] = "all"
TARIFF:
[ConsignorID] = "00000"
||
[ConsignorID] in values('User'[ConsignorID])
Result:
2 Detele the relationship between these two tables and RLS Filter DAX:
User:
[UserEmail] = username()
TARIFF:
[ConsignorID] = "00000"
||
[ConsignorID] in calculatetable(values('User'[ConsignorID]),filter('User',[UserEmail] = username()))
Result:
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
thanks a lot! it works!!! what a relief!
@Anonymous
In your second DAX instead of writing false you can give a text , may be 1 or 0 and filter it out via FILTER
Regards,
Ritesh
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.
User | Count |
---|---|
10 | |
6 | |
4 | |
3 | |
3 |
User | Count |
---|---|
11 | |
11 | |
8 | |
8 | |
8 |