Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have data that identifies internal part numbers, along with manufacturer names and part numbers. I am trying to provide information on how many, and what, items have a certain number of parts listed. For example, one user wants a report on all internal part numbers with only one manufacturer, while another user wants a listing of all internal numbers with either 2 or 3 manufacturers.
An example of my data is as follows:
| Internal Part Number | Manufacturer | MFG Part Number |
| 123 | ABC | 789 |
| 123 | XYZ | 789 |
| 456 | ABC | 1010 |
| 654 | ABC | 555 |
| 654 | XYZ | 888 |
| 654 | HIJ | 4545 |
I want the user to be able to select 1 manufacturer, and see just 456. Select 2 and see 123. Select more than 1 and see 123 and 456.
Thanks in advance
Solved! Go to Solution.
Hi @MP87
If I understood you correctly, you can add a calculated column that will count the manufacturers for every part.
The formula that you can use for this :
and use this column as a slicer :
the pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi @MP87
If I understood you correctly, you can add a calculated column that will count the manufacturers for every part.
The formula that you can use for this :
and use this column as a slicer :
the pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 25 | |
| 25 | |
| 23 | |
| 16 |
| User | Count |
|---|---|
| 45 | |
| 32 | |
| 18 | |
| 16 | |
| 16 |