Calculate Sales Tax on an Order
Your invoice sheet has order subtotals and you need the sales tax and the tax-included total for each one — say at an 8% rate — without a calculator on your desk.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
Multiplying the subtotal by the rate gives the tax itself: a $250 order at 8% owes $20. For the total in one step, multiply by one plus the rate — =B2*(1+0.08) gives $270, because 1 covers the original amount and 0.08 adds the tax on top. The reverse question comes up just as often: a card reader hands you a tax-included $270 and you need the pre-tax amount for your books. Divide by one plus the rate — =B2/(1+0.08) returns exactly $250. Subtracting 8% from the total does NOT work, because the 8% was charged on the smaller pre-tax amount, not on the total.
When to use it
Use it on invoice sheets, quote calculators, and daily sales logs — anywhere you charge tax on orders, or need to strip tax out of card-reader totals for bookkeeping.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08