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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
1. can i hide certain visuals for specific users or group?
example i have bar chart , line chart and pie chart in one page of report. i want to show only bar chart and pie chart to finance users and only line chart to Marketing users
2. can i show different color for same chart for specific users or group?
example i have bar chart , line chart and pie chart in one page of report. i want to show only bar chart and pie chart with white bakcground to finance users and only line chart with grey background to Marketing users
Solved! Go to Solution.
Hi @powerbiexpert22 ,
Thank you for the follow-up,I would be happy to assist you!
ShowBarChart =
IF(
MAX(SalesData[Department]) = "Finance",
1,
0
)
ShowLineChart =
IF(
MAX(SalesData[Department]) = "Marketing",
1,
0
)
ShowPieChart =
IF(
MAX(SalesData[Department]) = "Finance",
1,
0
)
Create an RLS rule on UserAccess:
[UserName] = USERPRINCIPALNAME()
I hope this answer resolve your query.If so,give us kudos and consider accepting it as solution.
Regards,
Pallavi.
Hi @powerbiexpert22 ,
I wanted to check in on your situation regarding the issue. Have you resolved it? If you have, please consider marking the reply that helped you or sharing your solution. It would be greatly appreciated by others in the community who may have the same question
Thank you.
Hi @powerbiexpert22 ,
May I ask if you have gotten this issue resolved?If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.
Thank you.
Hi @Anonymous , @Akash_Varuna
can you please suggest on this how can it be done?
Hi @powerbiexpert22 ,
Thank you for the follow-up,I would be happy to assist you!
ShowBarChart =
IF(
MAX(SalesData[Department]) = "Finance",
1,
0
)
ShowLineChart =
IF(
MAX(SalesData[Department]) = "Marketing",
1,
0
)
ShowPieChart =
IF(
MAX(SalesData[Department]) = "Finance",
1,
0
)
Create an RLS rule on UserAccess:
[UserName] = USERPRINCIPALNAME()
I hope this answer resolve your query.If so,give us kudos and consider accepting it as solution.
Regards,
Pallavi.
@powerbiexpert22 create a permissions table with user roles and a ShowVisual column (1 for visible, 0 for hidden).if you already have a table then import that . Define roles in Power BI's Manage Roles and filter the permissions table accordingly. Update the ShowVisual measure to check the user’s role and apply it as a visual-level filter use USERNAME function
Hi @Akash_Varuna ,
i created filter ShowVisual which has defult value 1 and assign to all charts, please see attached pbix for reference , what should be the next step? which permission table i have to create?
https://drive.google.com/file/d/1TXJ5-35sfsbFAYBj6Ey-Os0AOG0ZnOUz/view?usp=drive_link
Hi @powerbiexpert22 ,
Thank you @Akash_Varuna for the helpful response!
Create a new measure using the below DAX :
ShowVisualAccess =
VAR CurrentUser = USERNAME()
RETURN
CALCULATE(
MAX(yourtable[ShowVisual]),
FILTER(yourtable, yourtable[UserRole] = CurrentUser)
)
Drag the ShowVisualAccess measure into the Filters on this visual pane. Set the filter to "is 1".
Hope this resolve your query.if so,consider accepting it as solution.
Thank you.
Regards,
Pallavi.
@powerbiexpert22 Yes, you can hide certain visuals for specific users or groups by using Row-Level Security (RLS) with a permissions table and DAX measures to conditionally show visuals based on user roles. For example, create a measure like ShowVisual and filter visuals using it. Similarly, to show different colors for the same chart, create a DAX measure for background or data color based on user roles and apply it via conditional formatting.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!