Percentage Decrease Formula
90.00 fell to 63.00, a decrease of 30.00%.
The homepage calculator covers what this formula is and how to use it. This page goes further: the notation differences you'll see across other sources, the algebra behind solving for a different variable, why stacking decreases doesn't add the way intuition suggests, and a few more spreadsheet patterns beyond the basic formula.
Notation Variants Used Across Sources
The same formula appears under at least three naming conventions, depending on where you learned it:
- Starting / Final Value
- Common in general math and business writing, "Starting Value" and "Final Value" mean exactly what this site calls "Original" and "New."
- Initial / New Value
- Common in science and engineering texts, "Initial Value" is identical to "Original Value" in every formula on this site.
- V1 / V2
- Common in statistics, a deliberately generic notation with no implied real-world context, where V1 plays the role of Original and V2 plays the role of New.
All three describe the identical calculation. If a formula you find elsewhere looks different from this site's, check the variable names before assuming the math itself disagrees.
A fourth convention worth recognizing: some finance and statistics sources write the formula using P₀ (initial period) and P₁ (subsequent period) subscripts instead of named variables, which is common in time-series contexts where there may eventually be a P₂, P₃, and so on. It's the identical two-value formula on this page, just indexed for a sequence rather than named for a single comparison.
Algebraic Rearrangements
The base formula solves for the rate. Rearranged, it can just as easily solve for the new value or the original value instead , the two directions the reverse percentage calculator handles as a dedicated tool.
Solving for the New Value
Example: an original value of 440 with an 15% rate gives New = 440 × 0.85 = 374.
Solving for the Original Value
Example: a new value of 374 that resulted from a 15% decrease gives Original = 374 ÷ 0.85 = 440, the same pair of numbers, worked in the other direction. The reverse percentage calculator handles both directions interactively, including the edge case where this rearrangement breaks down entirely at a 100% rate.
Solving for the Rate
This is the base formula itself, solving for the rate is what the homepage calculator does whenever both the original and new value are already known. It's listed here alongside the other two rearrangements to make clear that all three are the same equation, just isolated for a different unknown.
Compounding Decreases
Two successive 10% decreases are not a 20% decrease, a mistake intuitive enough that it's worth proving with real numbers. Starting from 400:
- After the first 10% decrease400 × 0.90 = 360
- After the second 10% decrease360 × 0.90 = 324
- Total decrease from 400 to 324(400 − 324) ÷ 400 × 100 = 19.00%
The combined result is 19%, not 20%, because the second 10% is calculated against the already-reduced 360, not the original 400. This is the identical reasoning behind why stacked discounts don't add either. It's the same compounding formula applied to pricing.
Add a third 10% decrease and the gap widens further: 324 × 0.90 = 291.60, a combined decrease of (400 − 291.60) ÷ 400 × 100 = 27.10%, not the 30% naive addition would suggest, and further from it than the two-decrease case was. Each additional decrease compounds on a smaller base, so the shortfall from simple addition grows with every step rather than staying fixed.
Excel and Sheets, Reprised
The homepage covers the basic single-cell formula. Two more patterns worth knowing:
An Array Formula for a Whole Column
This computes the percentage decrease for every row from 2 to 100 in one formula, instead of writing and dragging the same formula down the column manually.
Wrapping Blank Cells Safely
This returns a blank cell instead of a #DIV/0!
error whenever the original value in column A is empty or zero,
which keeps a summary report clean when pulling from a data
source that isn't fully filled in yet.
Relationship to Percentage Decrease
Everything on this page is the same percentage decrease formula the homepage introduces, examined from every algebraic angle: renamed variables, solved for a different unknown, chained across multiple periods, and expressed in spreadsheet syntax. There is exactly one formula underneath all of it.