Calc Hub

Sales Tax Calculator – Instantly Compute Tax & Total Price

Calculate sales tax amount and total price for any purchase. Compare rates across states and cities with our free sales tax calculator.

Last updated: 2026-03-09

Sales tax calculator

Calculation History

No calculations yet.

Examples

How Sales Tax Works

Sales tax is a consumption tax imposed by state and local governments on the sale of goods and certain services. The tax is calculated as a percentage of the purchase price and collected by the retailer at the point of sale.

The Formula

Tax Amount = Price × (Tax Rate ÷ 100)
Total Price = Price + Tax Amount

Key Facts

  • Sales tax rates vary widely by state, county, and city
  • Five states have no state sales tax: Alaska, Delaware, Montana, New Hampshire, and Oregon
  • Some items like groceries and prescription medications are exempt in many states
  • Combined state and local rates can exceed 10% in some jurisdictions

Frequently Asked Questions

Which states have no sales tax?
Alaska, Delaware, Montana, New Hampshire, and Oregon have no state-level sales tax. However, some localities in Alaska do impose local sales taxes.
Are groceries taxed?
It varies by state. Most states exempt unprepared food and groceries from sales tax, but some states like Alabama, Mississippi, and South Dakota tax groceries at the full rate.
What is a use tax?
Use tax applies to purchases made out-of-state or online where sales tax wasn't collected. It's typically the same rate as your local sales tax and is legally owed by the buyer.
How do combined state and local rates work?
Your total sales tax rate is the sum of the state rate plus any county, city, and special district rates. For example, New York City's 8.875% combines the 4% state rate with 4.5% city rate and 0.375% metro commuter district surcharge.

Related Calculators

Need More Financial Tools?

Explore our full suite of finance calculators for budgeting, loans, and investing.

Was this calculator helpful?

Your feedback helps us improve future calculators.

Disclaimer

Tax calculations are estimates. Actual sales tax may vary by jurisdiction, product exemptions, and local regulations. Always verify with your local tax authority.

Embed this calculator

Copy the code below to embed this calculator on your website or blog. It's free — no API key needed.

<iframe
  src="https://calc.mintloop.dev/embed/daily/sales-tax-calculator"
  width="100%"
  height="600"
  frameborder="0"
  title="Sales Tax Calculator – Instantly Compute Tax & Total Price"
  loading="lazy">
</iframe>
Optional: auto-resize script
<script>
var CALC_HUB_ORIGIN = 'https://calc.mintloop.dev';
window.addEventListener('message', function(e) {
  if (e.origin !== CALC_HUB_ORIGIN) return;
  if (!e.data || e.data.type !== 'calc-hub-resize') return;
  var frames = document.querySelectorAll('iframe[src*="calc.mintloop.dev"]');
  frames.forEach(function(f) {
    if (f.contentWindow === e.source) {
      f.style.height = String(Math.max(0, Number(e.data.height) || 0)) + 'px';
    }
  });
});
</script>