US Sales Tax10 min read·Updated May 22, 2026

Reverse Sales Tax Formula 2026

Reverse sales tax means starting with the total paid and working backward to find the pre-tax price and tax amount. It is useful for receipts, reimbursements, bookkeeping, and price checks.

F

Pravin Wavare

Founder, FastTaxCalc · Published May 22, 2026 · Editorial policy

Reverse Sales Tax Formula

To remove sales tax from a total, divide the total by 1 plus the tax rate as a decimal. Then subtract the pre-tax price from the total to find the tax amount.

Reverse sales tax:

Pre-tax price = Total / (1 + tax rate)

Tax amount = Total - Pre-tax price

Example: $108 total at 8% tax = $108 / 1.08 = $100 pre-tax. Tax = $8.

If the sales tax rate is 7.25%, use 0.0725 in the formula. If the rate is 8.875%, use 0.08875. The more decimal places in the rate, the more important it is to use the exact combined state and local rate.

Worked Examples

Example 1: 8% sales tax

A receipt total is $216 and the sales tax rate is 8%. Divide $216 by 1.08. The pre-tax price is $200. The tax included in the total is $16.

Example 2: California 10.25% city rate

A Los Angeles receipt total is $551.25 and the combined rate is 10.25%. Divide $551.25 by 1.1025. The pre-tax price is $500. The tax amount is $51.25. This is easier with the California sales tax calculatorbecause the city rate can be selected directly.

Example 3: New York City 8.875%

A New York City total is $1,088.75. Divide by 1.08875. The pre-tax price is $1,000 and the tax included is $88.75. The same formula works for every state, city, and district rate.

Common Rate Shortcuts

Tax rateDivide total byExample totalPre-tax price
6%1.06$106.00$100.00
7.25%1.0725$107.25$100.00
8%1.08$108.00$100.00
8.875%1.08875$108.88$100.00
10.25%1.1025$110.25$100.00

Common Mistakes

Subtracting the tax rate from the total

If a total is $108 at 8% tax, subtracting 8% from $108 gives $99.36. That is wrong because the 8% tax was applied to the smaller pre-tax price, not to the final total. Division is the correct reverse method.

Using the state rate instead of the combined rate

US sales tax is often state plus local tax. California's state base rate is 7.25%, but Los Angeles is higher. New York state is 4%, but New York City is 8.875%. Reverse calculations need the actual combined rate on the receipt.

Ignoring taxable shipping or fees

If shipping, handling, or service fees were taxable, they may already be inside the total. Reverse the full taxable total only when those charges were included in the taxable base.

The fastest way to avoid mistakes is to use the sales tax calculator, switch to remove-tax mode, choose the state or city rate, and enter the receipt total.

Reverse sales tax in bookkeeping and reimbursements

Accounts payable teams use reverse sales tax when employees submit credit card receipts showing only a gross total. Splitting tax from meals, supplies, and mileage reimbursements requires the combined rate for the transaction location, not the employee home office state unless policy dictates otherwise.

Expense systems like Concur and Expensify can auto-calculate if you supply rate metadata. For manual journals: debit expense for net, debit sales tax payable or receivable for tax, credit cash for gross. Rounding differences of one cent should post to a rounding account consistently.

IRS audit of meal deductions may scrutinize whether tax was included in reported amounts — document your extraction method and rate source in the expense policy.

Multi-jurisdiction receipts and blended rates

A single receipt rarely blends rates, but shopping mall purchases from multiple vendors each need separate reverse calculations. Airport duty-free and border towns may show VAT or GST instead of US sales tax — use the correct formula for that tax type.

Invoices showing tax as a single line without rate require you to infer rate from address or request corrected invoice from vendor. Never guess 8% because it is common — use official combined rate for the delivery address.

Our sales tax calculator reverse mode automates division for any percentage, including NYC 8.875% and Chicago 10.25%.

Implementing reverse tax in software

Developers should use decimal math libraries, not floating point alone, for money. Formula: pretax = Math.round((total / (1 + rate)) * 100) / 100 in cents-based implementations. Display rate with sufficient precision — four decimal places for odd district rates.

Validate with golden test cases: $108 @ 8%, $110.25 @ 10.25%, $1,088.75 @ 8.875%. Property-based tests randomize totals and rates within realistic bounds.

API design: accept total and rateBps (basis points) to avoid float strings. Document that subtracting percentage from gross is intentionally unsupported.

Frequently Asked Questions

How do you reverse sales tax?

Divide the total price by 1 plus the tax rate as a decimal. For an 8% rate, divide by 1.08. The difference between the total and pre-tax price is the tax amount.

How do I find tax included in a total?

First find the pre-tax price by dividing the total by 1 + rate. Then subtract the pre-tax price from the total.

Can I use the same formula for VAT?

Yes. Reverse VAT uses the same structure: gross price divided by 1 plus the tax rate. For 20% VAT, divide by 1.20.

Disclaimer: This article is for informational purposes only and does not constitute professional tax advice. Tax rates change — always verify current rates with the official tax authority for your jurisdiction before filing or making financial decisions. FastTaxCalc articles are reviewed against official sources and updated when tax agencies publish material rate or rule changes. Rates sourced from: IRS.gov · HMRC · CBIC · CRA