Top 10 suppliers as percentage of all.

ajm

Well-known Member
Joined
Feb 5, 2003
Messages
2,005
Office Version
  1. 365
Platform
  1. Windows
I am wanting to show the top 10 suppliers by spend and show their respective percentages of total sales. Pivot table easily gives me Top 10 but the options for % don't give the opportunity to compare each of the suppliers spend amounts to total sales, as opposed to % of top 10 spend. any suggestions?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Power Pivot / DAX is your best friend with this kind of calculations. If you're using Excel 2010 or later you should be good to go and you'll get away with basically these three simple calculations:

Code:
Sales:=SUM(Sales[SalesAmount])
Total Sales:=CALCULATE([Sales],ALL(Suppliers))
Pct of Total Sales:=DIVIDE([Sales],[Total Sales])

The Sales measure simply sums the SalesAmount column in your Sales table.
The CALCULATE in Total Sales removes the filters from the Suppliers-table, but you can still filter the sales table by any other related table.
The Pct of Total Sales measure returns just what the title says.

Depending on your data table structure you might have to alter the formulas a little bit but as long as you have a relationship from your Sales table to your Suppliers table - either through Products table or directly - you should be able to use some version of these formulas.

If you're not familiar with Pover Pivot or DAX you might want to watch one of the PowerPivot tutorials found in YouTube.
 
Upvote 0

Forum statistics

Threads
1,214,596
Messages
6,120,438
Members
448,966
Latest member
DannyC96

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top