Calculate a Discounted Price
You have a price list and a percent-off column — 25% off the desk lamp, 10% off the office chair — and need the sale price for every row of the quote.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
One minus the discount is the fraction of the price the customer still pays: 25% off means paying 75%, so an $80 lamp becomes 80 × 0.75 = $60. Keeping the percent-off in its own cell (C2) means one formula copies down the whole price list, with each row picking up its own discount. Format column C as a percentage so 25% is stored as 0.25 — the math depends on it. When discounts stack, they multiply rather than add: 20% off then an extra 10% off is =B2*(1-0.2)*(1-0.1), which leaves 72% of the price — a 28% total discount, not 30%, because the second discount applies to the already-reduced price.
When to use it
Use it on quotes, promo price lists, and clearance sheets — anywhere each product carries its own percent-off and you need the final price the customer sees.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08