
=current/(percent+1)
Related formulas
Increase by percentage
Decrease by percentage
Percent of goal
Calculate percent variance
To calculate the original number based on current value and known percentage change, you can use a simple formula that pides the current value by the percent plus 1.
In the example, the active cell contains this formula:
=C6/(B6+1)
In this case, Excel first calculates the result of B6 + 1, then pides C6 by the result:
=C6/(B6+1)=200/1.15=173.913
In the example shown, values in column D are using the currency format, which displays 2 decimal places automatically. If you want to force the result to be rounded to 2 decimal places, just wrap in the ROUND function:
=ROUND(C6/(B6+1),2)

=current/(percent+1)
Related formulas
Increase by percentage
Decrease by percentage
Percent of goal
Calculate percent variance
To calculate the original number based on current value and known percentage change, you can use a simple formula that pides the current value by the percent plus 1.
In the example, the active cell contains this formula:
=C6/(B6+1)
In this case, Excel first calculates the result of B6 + 1, then pides C6 by the result:
=C6/(B6+1)=200/1.15=173.913
In the example shown, values in column D are using the currency format, which displays 2 decimal places automatically. If you want to force the result to be rounded to 2 decimal places, just wrap in the ROUND function:
=ROUND(C6/(B6+1),2)