Forum Discussion
Anonymous
8 years agoNot applicable
Hiding a column based on a user
Hi Folks, Just trying to figure out something. There is a small population of users that I need to give access to the reports, but they are not allowed to see a performance rating column. Is ther...
Mitsql
Advocate II
8 years agoAnonymous Try setting a role-based filter in power bi desktop before publishing to the cloud. Also, you can check using "view as role" before publishing.
- Anonymous8 years agoNot applicable
parry2k Is there a way to make it blank or with a "-" based on a user logged in? They only have read only access to the dashboards.
- Anonymous8 years agoNot applicable
parry2k Any ideas would be great please :)
- parry2k8 years ago
Super User
You can add calculated field and check if user has permission to see the value to that field or not and then make that field blank()
here is link for reference
Just an idea
Amount Hide = var r = IF(CONTAINS(UsersTable,UsersTable[login], USERNAME()), 1, 0) return if(r = 1, Table[Amount], blank())