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
I tried to recreate the problem in excel for simplfaction and to protect data.
I need to create a filter in which in this example Supplier C gets excluded from the graph because the number of SKU they delivered is under 2.
The number of SKU should be calicated from my base table which has every item delivered and per item it says which supplier it comes from. I then need a way to summairze that data so that if lets say in this 7 items supplier B has delivered 7 4 items it creates a colum with the number 4 and then I can use that colum in a summery table that I've created which only has the suppliers and the rank of the performance based on percentage.
Anyone know how to do this is power BI ?
Hi @naal1995,
You could calculate the Amout of SKU with the formula below.
Measure =
CALCULATE (
COUNT ( 'Base Table'[Supplier] ),
FILTER (
ALL ( 'Base Table' ),
'Base Table'[Supplier] = MAX ( 'Base Table'[Supplier] )
)
)
I 'm a little confused about your Percent, but you could calculate the Rank column with Rankx function in Power BI.
Then you could create the Clusetered column chart with the Supplier as Axis and Rank column as value.
Best Regards,
Cherry
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 | |
| 45 | |
| 40 | |
| 21 | |
| 18 |