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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
We are trying to create a table and slicer which shows the below information in the form of 1 entry per selection:
| ||||||||||||||||||||||||||||||
To explain indetail with a example:
The above table has to be shown as it is in the tab and there would be a filter called Pacakage with 3 entries
1. Bronze
2. Silver
3. Gold
and if I select 1. Bronze only the below 2 rows has to show, this is because AA and CCC have 1. Bronze only once and all other have 2/more entiries.
| AA | 1.Bronze |
| CCC | 1.Bronze |
Example 2:
If we select 2. Silver only 2 entries has to be shown, like wise for Gold
| B | 2.Silver |
| CC | 2.Silver |
Can anyone please help and also can anyone please help me how can I upload/attach any attachment here
Solved! Go to Solution.
Hi @Parvez933 ,
Table 2 = SUMMARIZE('Table','Table'[Package])
Then create a 1:N relationship between the tables
2. Create a new measure, and input the following code, and put the measure to the visual filter, set the condition that , the measure equal to 1
Measure = IF(ISFILTERED('Table 2'[Package]),IF(CALCULATE(COUNTA('Table'[Company]),'Table'[Company]=SELECTEDVALUE('Table'[Company]),ALL('Table'))=1,1,0),1)
The related Output
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Xinru Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Xinru Zhu,
This is the expectation and we have achieved it. Thank You for your help.
Hi @Parvez933 ,
Table 2 = SUMMARIZE('Table','Table'[Package])
Then create a 1:N relationship between the tables
2. Create a new measure, and input the following code, and put the measure to the visual filter, set the condition that , the measure equal to 1
Measure = IF(ISFILTERED('Table 2'[Package]),IF(CALCULATE(COUNTA('Table'[Company]),'Table'[Company]=SELECTEDVALUE('Table'[Company]),ALL('Table'))=1,1,0),1)
The related Output
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Xinru Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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!
| User | Count |
|---|---|
| 58 | |
| 43 | |
| 41 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 121 | |
| 96 | |
| 65 | |
| 46 |