Back Out Tax from a Tax-Inclusive Price

Excel Formulas › Business

All versionsDivision

A price already includes tax — how much of it is the tax? Divide out the tax factor to recover the net price, then the tax is the rest. The classic VAT/sales-tax back-calculation.


Quick formula: for a gross (tax-inclusive) price B1 and rate B2:
=B1 / (1 + B2) // net price =B1 - B1/(1 + B2) // tax portion
Dividing by (1 + rate) strips the tax to give the net; the difference is the tax.

Functions used (tap for the full reference guide):

The example

A $108 price that includes 8% tax.

AB
1ItemValue
2Gross (incl. tax)$108.00
3Net price$100.00
4Tax$8.00

The formula

Recover net and tax from gross:

=B1 / (1 + B2) → 100 =B1 - B1/(1 + B2) → 8

How it works

The gross is the net grossed up by the tax factor:

  1. Gross = net × (1 + rate). To reverse it, divide the gross by (1 + rate) for the net.
  2. The tax is gross minus net — or equivalently gross × rate / (1 + rate).
  3. Round both to 2 decimals so net + tax equals the gross exactly.
  4. This is the standard way to split a tax-inclusive (VAT-style) total into its components.

Don’t just multiply the gross by the rate. gross × 8% overstates the tax, because the tax is 8% of the net, not the gross. Always divide by (1 + rate) first.

Try it: interactive demo

Live demo

Set the tax-inclusive price and rate.

Net · Tax

Variations

Tax directly

Without computing net first:

=B1 * B2 / (1 + B2)

Add tax (forward)

Net to gross:

=net * (1 + rate)

Effective rate on net

Confirm it:

=tax / net

Pitfalls & errors

Divide, don’t multiply. Tax is a share of the net, not the gross — gross × rate is wrong. Use gross/(1+rate).

Round consistently. Round net and tax to 2 decimals so they add back to the gross.

Compound taxes. If two taxes are layered, back them out in the correct order, not as one combined rate.

Practice workbook

📊
Download the free Back Out Tax from a Tax-Inclusive Price practice workbook
A tax back-out sheet with the direct-tax, forward, and effective-rate variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I remove tax from a tax-inclusive price in Excel?
Divide by (1 + rate): =gross/(1+rate) gives the net price, and gross − net is the tax.
Why can't I just multiply the gross by the tax rate?
The tax is a percentage of the net price, not the gross. Multiplying the gross overstates it; divide by (1+rate) first.
How do I get the tax amount directly?
Use =gross * rate / (1 + rate).

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Invoice total with tax · Sales tax by region · Percent change & % of total

Function references: ROUND