Calculating percent increases is a common task when analyzing data, and Excel provides a range of tools to make this process efficient and accurate. Whether you're tracking sales growth, monitoring stock prices, or evaluating investment returns, understanding how to compute percent increases in Excel is essential. In this comprehensive guide, we'll explore various methods and formulas to master this skill, ensuring you can confidently interpret and present your data.
Method 1: Basic Percentage Increase Calculation

The most straightforward way to calculate a percentage increase is to use the following formula:
Percentage Increase = ((New Value - Old Value) / Old Value) * 100
Let's break down the formula and apply it to a simple example:
Suppose you have the following data:
Year | Sales |
---|---|
2021 | 1000 |
2022 | 1200 |

To find the percentage increase in sales from 2021 to 2022, you can use the formula:
Percentage Increase = ((1200 - 1000) / 1000) * 100 = 20%
This means sales increased by 20% from 2021 to 2022.
Method 2: Using Excel's Percentage Increase Formula

Excel provides a built-in formula specifically for calculating percentage increases: % or PERCENTAGE. This formula is straightforward and easy to use.
Let's apply this formula to the same example. In an empty cell, enter the following formula:
=PERCENTAGE(New Value, Old Value)
So, for our example, the formula would be:
=PERCENTAGE(1200, 1000)
Excel will return the result as a percentage increase, which in this case is 20%.
Method 3: Using the Percentage Increase Function in Excel

Excel also offers a function called PERCENTRANK to calculate percentage increases. This function returns the relative standing of a value within a dataset as a percentage.
To calculate the percentage increase using PERCENTRANK, you can use the following formula:
Percentage Increase = (PERCENTRANK(Old Value, New Value) - 1) * 100
Let's apply this formula to our example. In an empty cell, enter the following formula:
= (PERCENTRANK(1000, 1200) - 1) * 100
Excel will return the result as a percentage increase, which is 20% in this case.
Method 4: Calculating Percentage Increase with Multiple Data Points

If you have multiple data points and want to calculate the percentage increase between consecutive values, you can use Excel's IF function along with the basic percentage increase formula.
Let's consider an example with a range of values:
Year | Sales |
---|---|
2020 | 800 |
2021 | 1000 |
2022 | 1200 |
To calculate the percentage increase from 2020 to 2021 and from 2021 to 2022, you can use the following formula in an empty cell:
=IF(AND(B2>B1, B3>B2), ((B3-B2)/B2)*100, 0)
This formula checks if the sales values in consecutive years are increasing. If they are, it calculates the percentage increase; otherwise, it returns 0.
Method 5: Calculating Percentage Increase with Average Values

Sometimes, you may want to calculate the percentage increase between two average values. In such cases, you can use the basic percentage increase formula along with the AVERAGE function.
Suppose you have the following data:
Year | Sales |
---|---|
2021 | 1000 |
2022 | 1200 |
To find the percentage increase in sales from 2021 to 2022, taking into account the average values, you can use the formula:
Percentage Increase = ((AVERAGE(2022 Sales) - AVERAGE(2021 Sales)) / AVERAGE(2021 Sales)) * 100
This formula calculates the average sales for each year and then computes the percentage increase.
Notes

Note: Ensure your data is properly formatted and consistent to avoid errors. Always double-check your calculations and formulas for accuracy.
Conclusion

Calculating percent increases in Excel is a valuable skill for data analysis and interpretation. By mastering these methods and formulas, you can efficiently determine percentage changes in your data. Whether you're tracking sales, monitoring stock prices, or evaluating investment performance, Excel's tools and functions make the process straightforward and reliable. With practice and attention to detail, you'll become proficient in calculating percent increases and presenting meaningful insights from your data.
FAQ

How do I calculate a percentage increase in Excel using the basic formula?

+
To calculate a percentage increase in Excel using the basic formula, you can use the following formula: Percentage Increase = ((New Value - Old Value) / Old Value) * 100.
What is the Excel built-in formula for calculating percentage increases?

+
Excel provides the PERCENTAGE or % formula for calculating percentage increases. This formula is straightforward and easy to use.
How can I calculate percentage increase with multiple data points in Excel?

+
To calculate percentage increase with multiple data points in Excel, you can use the IF function along with the basic percentage increase formula. This allows you to check for consecutive increases and calculate the percentage accordingly.