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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi, expertise on Power Bi.
I have some data like below.
User ID Project
PJ1402PUR | 1402 |
PJ1402PUR | 1101 |
PJ1402PUR | 1302 |
PJ1402PUR | 1801 |
PJ1402PUR | 1802 |
PJ1701PUR | 1401 |
PJ1701PUR | 1402 |
PJ1701PUR | 1801 |
PJ1701PUR | 1802 |
PJ1710STO | 1402 |
PJ1710STO | 1701 |
PJ1710STO | 1702 |
PJ1710STO | 1710 |
PJ1401ACT | 1302 |
PJ1401ACT | 1301 |
PJ1401ACT | 1401 |
What I want is when someone clicks on the project, it will be shown only the User ID for the old projects.
Such as when I click on 1401.
From this case, it will be shown the User IDs only following.
PJ1302PUR |
PJ1100STO |
PJ1401ACT |
And the result like this on Power BI.
And when I click on the other more new projects, 1405 or 1510 may show. If they have projects belong to the User ID.
How can I resolve this?
Thanks.
Solved! Go to Solution.
Hi @saranp780,
Actually it is not possbile to meet the exact same requirement as yours. However we can use a table visual to work around.
1. Create a calculated column.
Column = MID(Sheet1[User ID],3,4)
2. Create the measures as below.
Measure = SUM(Sheet1[Column])
Measure 2 = IF(ISBLANK([Measure]),BLANK(),RANKX(ALLSELECTED(Sheet1),[Measure],,ASC,Dense))
3. Create a table visual and filter the table by Measure 2.
For more details, please check the pbix as attached.
Regards,
Frank
Hi @saranp780,
Could you please share your pbix to me?
Regards,
Frank
https://drive.google.com/file/d/1lnDqNO2pA-fcbewc5qPcAwIW4wLuypd2/view?usp=sharing
This is my Power BI file. Please help me.
Hi @saranp780,
Actually it is not possbile to meet the exact same requirement as yours. However we can use a table visual to work around.
1. Create a calculated column.
Column = MID(Sheet1[User ID],3,4)
2. Create the measures as below.
Measure = SUM(Sheet1[Column])
Measure 2 = IF(ISBLANK([Measure]),BLANK(),RANKX(ALLSELECTED(Sheet1),[Measure],,ASC,Dense))
3. Create a table visual and filter the table by Measure 2.
For more details, please check the pbix as attached.
Regards,
Frank
Hi @saranp780,
Does that make sense? If so, kindly mark my answer as a solution to close the case.
Regards,
Frank
Oh sorry. I forgot that.
Have you tried to edit the interactions so that the Project slicer can filter the User ID slicer ?
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.