Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
MIRZAMU
Frequent Visitor

Creating a Bandwidth/Confidential chart

Hi,

 

I have information in a table on Power BI where it will show the value figure against a name. I was wondering whether it was possible where if I select a particular name, it will hide the other names but still show the value, meaning you can see where that person ranks against everyone else, but without seeing the other names as it is confidential if that makes sense?

2 REPLIES 2
Anonymous
Not applicable

Hi @MIRZAMU ,

Do you want to only get the current user info and rank value compare to the others users? If yes, you can refer the solution in the following thread. Hope it can help you resolve the problem.

Show Current Logged in User data only

Measure1
WhoIsWatching = USERPRINCIPALNAME() 
(that is email style usernames, or you can use USERNAME() for windows style users)

yingyinr_0-1655709520128.png

Measure 2
FilterByViewer = IF(selectedvalue(table[email])=[WhoIsWatching],1,0)

yingyinr_1-1655709520131.png


Drag Measure 2 as a filter for visual, select advanced filtering and set it to 
"Show items when value IS 1"

yingyinr_2-1655709520416.png

Show the information but not the details: Power BI Data Masking

Showing Ranking in a Visual in Power BI using RANKX DAX function

yingyinr_3-1655709882897.png

Best Regards

Hi, 

 

Thanks for your reply.

 

I have tried using these measures but they do not seem applicable for my report.

MIRZAMU_0-1655714389760.png

This is a screenshot of my report.

See the table on the left. if I select a name from the left hand column (which has been coloured out), I want the names to be anonymised / blank, but the values still to show. Same with the Column Graph on the right. I have labels underneath each bar but when selected, I want the names to be blank except the selected name of course

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors