- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

How to restrict access to only certain measures?
Hi, folks,
Is there a way to restrict some users' access to one or more measure/s only?
Object level security (OLS) does not work in my case because I have visuals, for example a table visual, which contains other data in addition to the measures that should be hidden. So if I use OLS, the whole table visual will be hidden from users, which includes measures and columns that all report users must be able to see.
The workaround with the page level security is a back-up option which I would prefer to avoid because I will have to re-work my whole report which contains many pages and then it will contain even more pages.
Thanks for your time!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
OK, you could modify the measure to read the user with userprincipalname() then return BLANK() if they matched a criteria. It would look something like this.
Bonus Amount =
VAR _UPN =
USERPRINCIPALNAME ()
VAR _UserType =
LOOKUPVALUE ( 'Users'[Role], 'Users'[Email], _UPN )
RETURN
IF ( _UserType = "Sales", BLANK (), SUM ( 'Payroll'[Bonuses] ) )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

This also sounds like a good option for applying in a calculation group. That way, if you found new measures you wanted to restrict, you could just add them to the calculation group.
https://www.sqlbi.com/calculation-groups/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
OK, you could modify the measure to read the user with userprincipalname() then return BLANK() if they matched a criteria. It would look something like this.
Bonus Amount =
VAR _UPN =
USERPRINCIPALNAME ()
VAR _UserType =
LOOKUPVALUE ( 'Users'[Role], 'Users'[Email], _UPN )
RETURN
IF ( _UserType = "Sales", BLANK (), SUM ( 'Payroll'[Bonuses] ) )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Would it work if you created a dummy table to hold the measures you want to restrict. Move the measure there (measures can belong to any table) then apply OLS to that table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thanks for your reply. The measures that need to be restricted are part of visuals that contain other data that needs to be seen. So when I apply the OLS, those visuals will appear broken to the users with restricted access while they should be able to see them. In the best case scenario, the measures should return a blank value when a user with restricted access opens the page.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
Anonymous
| 07-18-2024 10:41 PM | ||
11-14-2024 03:54 AM | |||
09-03-2019 11:57 PM | |||
08-21-2024 07:40 AM | |||
01-15-2025 09:08 AM |
User | Count |
---|---|
141 | |
115 | |
84 | |
63 | |
48 |