Every percentage calculation you'll ever need — with the exact formula and a real example for each.
What percentage is part X of total Y?
=part / total
=B2 / $B$10 (B2 is the part, B10 is the grand total)
-- Format the result cell as percentage (Ctrl+Shift+5)How much did something grow or shrink?
=(new_value - old_value) / old_value
=(C2 - B2) / B2
-- Positive = growth, negative = decline
-- Format as percentage=value * (1 + percentage)
=B2 * 1.20 (add 20% VAT)
=B2 * 1.15 (add 15%)
-- The 1 keeps the original, the 0.20 adds the percentage=value * (1 - percentage)
=B2 * 0.80 (apply a 20% discount — keeps 80% of original)
=B2 * (1 - C2) (C2 contains the discount rate)=actual / target
=C2 / B2
-- Format as percentage. Over 100% = target exceeded=value_after / (1 + percentage)
=B2 / 1.20 (find the pre-VAT price from a VAT-inclusive price)When you write a percentage formula, the result is a decimal (0.25 means 25%). Apply percentage formatting (Ctrl+Shift+5) and Excel displays it as 25% automatically. Don't multiply by 100 — that gives you 25 which can't be used as a percentage in further calculations.
ExcelPro has 880+ hands-on exercises across 9 tracks — type real formulas, get instant feedback.
Start practising free →