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.
Suppose this is my table called "People"
I want to set up a role that says "You can only see data about other people from the same country as yours".
Is there not a simple DAX for this?
[Country] = <the same>
Solved! Go to Solution.
You would need to use something like LOOKUPVALUE(...) = [Country] where your LOOKUPVALUE would use the Name to lookup the user's country.
@Anonymous
You may refer to the following post.
You would need to use something like LOOKUPVALUE(...) = [Country] where your LOOKUPVALUE would use the Name to lookup the user's country.
The report has email and uses USERPRINCIPAL() extensively. Does that make it easier?
@Anonymous
You may refer to the following post.
You would need to use something like LOOKUPVALUE(...) = [Country] where your LOOKUPVALUE would use the Name to lookup the user's country.