Working with percentages is a daily task for many Excel users.
Now you cannot simply add a percentage value to a number to get the right result. For example, you cannot use 10 + 10% to get 11.
Thankfully, Excel gives you a couple of really simple ways to do this. In this tutorial, I’ll show you two easy methods: using a simple formula and using the Paste Special feature for a super-quick update.
This Tutorial Covers:
ToggleAdd or Subtract Percentage Using a Formula
The easiest way to add or subtract percentage from a number is by using a formula. It keeps your original data intact and gives you a dynamic result that updates automatically if your numbers change.
Let me show you an example.
Below is the dataset where I have the product names in column A and their current prices in column B and I want to increase the prices in column B by 10 percent.
Here is the formula that will do this:
=B2*(1+10%)
In the above formula, I have multiplied the original price (which is in B2) by 1+10%. Excel is smart enough to understand that when I use 10% in the backend, I am actually referring to the decimal part which is 0.1.
So the formula actually become
=B2*(1+0.1)
In case you have percentage values in a separate column, then you can also use cell references to increase a given number by the given percentage value.
For example, below I have a dataset where I have prices in column B and the percentage that I want to add in column C, and I want to get the result in column D.
Here is the formula that will do this:
=B2*(1+C2)
The logic here is the same as where we multiply the value in cell B2 by 1 + the percentage value, which will finally give us the incremented value.
One caveat here is that your values in column C need to be either in percentages or in decimal. For example, you cannot have 10% as 10, it needs to be 0.1.
And in case you have these values as whole numbers, you will have to convert them to percentages by dividing them by 100.
In the example above, I have shown you how to add a percentage to a number. But if you want to subtract a percentage from a number, the logic remains the same. You just change the sign from plus (+) to minus (-).
Note: One good thing about this method is that it’s dynamic. If you change the price in column B, the result in column C will update instantly.
Also read: Calculate Percentage Change in Excel (% Increase/Decrease Formula)
Add or Subtract Percentage Using a Paste Special
Another way you can quickly add or subtract percentages in Excel is by using Paste Special.
Below I have a dataset where I have products in column A and their prices in column B, and I want to increase the prices by 10 percent.
Here are the steps to do this using Paste Special:
- In any blank cell, enter the value, 110% (we only need this temporarily). For this example, let us put the value in cell D1.
- Copy this cell in which we enter 110% (use the keyboard shortcut Ctrl+C or right click and then click on copy)
- Select the cells that have the numbers to which you want to add 10%. In this example, that would be the prices values in column B
- Right-click on any of these cells and then click on the ‘Paste Special’ option. This will open the Paste Special dialog box.
- Select the Values option, and then in the operations section, select the Multiply option.
- Click the OK button.
This will give you the result where the original values have now been incremented by 10%.
Once done, you can remove the 110% value in the cell that we entered in step 1.
Using the above method, we are not just copying and pasting the value 110%, we are actually multiplying it with the value in the cells in which we are pasting it to.
Now, here is how this is different from the formula method covered earlier:
- The result you get are static values. So if you change the value 110% to something else, the resulting values in column B would not automatically update.
- You do not need a helper column to apply the formula and get the result. You can apply this technique on your original data set.
- Your original data is lost unless you make a copy of it.
So there you have it – two simple ways of adding or subtracting percentages in Excel. The formula method is perfect for when you need to preserve your original data and want a dynamic result, while the Paste Special method is fantastic for quick, one-off updates.
I hope you found this tutorial helpful!
Other Excel articles you may also like: