Explanation
In this example, the goal is to work out the total of all expenses using a known percent of total of any one expense . If we know groceries are $200 and we know groceries represent 10.3% of total expenses, we want to calculate the total of all expenses ($1945). In other words, $200 is 10.3% of what number? With “x” as the number we want to find, we have:
25%*x=200
0.25*x=200
x=200/0.25
x=1945
So, to perform this calculation in Excel, we need to divide the amount of the expense in column C by the percentage that expense represents in column D like this:
=amount/percentage
In the example, the active cell E6, copied down, is:
=C6/D6
Excel simply divides the value in cell C6 by the percentage value in cell D6:
=700/0.359897 // returns 1945
The result is the number 1945 , which is the total of all expenses in this case. As the formula is copied down the table, the result is the same at each new row, since total for all expenses remains the same.
The formula in cell C15 uses the SUM function to check the results in column E:
=SUM(C6:C14) // returns 1945
Formatting percentages in Excel
In mathematics, a percentage is a number expressed as a fraction of 100. For example, 85% is read as “Eighty-five percent” and is equivalent to 85/100 or 0.85. Accordingly, the values in column D are decimal values. For example, D6 is approximately 0.36, D7 is approximately 0.18, etc.
To format a number like this as a percentage with the percent sign (%), apply the Percentage number format .
Explanation
In this example, the goal is to increase the prices shown in column C by the percentages shown in column D. For example, given the original price of $70.00, and an increase of 10%, the result should be $77.00. The general formula for this calculation, where “x” is the new price, is:
x=old*(1+percentage)
x=70*(1+10%)
x=70*1.10
x=77.00
Converting this to an Excel formula with cell references, the formula in E5 becomes:
=C5*(1+D5)
=70*(1+0.1)
=70*1.10
=77.00
As the formula is copied down, the formula returns a new price for each item in the table, based on the percentages shown in column D.
Negative percentages
Negative percentages will have the effect of decreasing the original price. For example, with -10% in cell D5 (-0.10), the formula evaluates like this:
=C5*(1+D5)
=70*(1+-0.1)
=70*0.9
=63.00
This example explains the general formula for increasing a number by a given percentage.
Formatting percentages in Excel
In mathematics, a percentage is a number expressed as a fraction of 100. For example, 95% is read as “Ninety-five percent” and is equivalent to 95/100 or 0.95. Accordingly, the values in column D are decimal values, with the Percentage number format applied.