How to calculate percentage of total sales in excel

Calculating the percentage of total sales is a straightforward process in Excel. This article will guide you through the steps to calculate the percentage of total sales using Microsoft Excel, which can be beneficial for analyzing data and making informed business decisions.
Step 1: Input Your Data
To begin, enter your data into an Excel worksheet. Organize your information with sales figures in one column and corresponding products or categories in another column.
For example, let’s say we have the following data:
| Product | Sales |
|———|———-|
| A | 1000 |
| B | 1500 |
| C | 1200 |
Step 2: Find Total Sales
To find the total sales for these products, you’ll need to employ the SUM function. In an empty cell, type =SUM() and include the range of cells that contain your sales figures.
Using our example data:
=SUM(B2:B4)
The result will be 3,700 as the total sales.
Step 3: Calculate Each Product’s Sales Percentage
Next, divide each product’s individual sales by the total sales and then multiply by 100 to get their percentage contribution. You can use a simple formula by dividing the individual sales with the total sales calculated in step 2.
In an empty cell next to each product’s sales figure:
For Product A:
=(B2/3700)*100
For Product B:
=(B3/3700)*100
For Product C:
=(B4/3700)*100
The results will be as follows:
| Product | Sales | Percentage|
|———|———|———–|
| A | 1000 | 27.03% |
| B | 1500 | 40.54% |
| C | 1200 | 32.43% |
Step 4: Formatting the Results
To give your data a more polished look, you can format the percentages as percentages by selecting the cells containing the percentages, right-clicking, and selecting “Format Cells.” In the “Category” list, choose “Percentage” and set the desired decimal places. Click “OK” to apply the format.
Conclusion:
By following these steps, you can quickly calculate the percentage of total sales for each product in Excel. This information can help you analyze sales trends and make data-driven decisions to improve your business performance.