Sales Tax Calculator Tn

Tennessee Sales Tax Calculator :root { –primary-blue: #004a99; –success-green: #28a745; –light-bg: #f8f9fa; –border: #d9dee3; –text: #1f2a37; } body { font-family: Arial, sans-serif; color: var(–text); margin: 0; background: #ffffff; } .loan-calc-container { max-width: 980px; margin: 24px auto; padding: 20px; background: var(–light-bg); border: 1px solid var(–border); border-radius: 10px; } .calc-header { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; } .calc-header h1 { margin: 0; color: var(–primary-blue); font-size: 24px; } .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } .input-group { background: #fff; border: 1px solid var(–border); border-radius: 8px; padding: 14px; } .input-group label { display: block; font-weight: bold; margin-bottom: 6px; } .input-group input[type="number"] { width: 100%; padding: 10px; border: 1px solid var(–border); border-radius: 6px; font-size: 16px; } .radio-group { display: flex; gap: 12px; margin-top: 8px; } .radio-group label { font-weight: normal; } .actions { margin-top: 16px; } .actions button { background: var(–primary-blue); color: #fff; border: 0; padding: 12px 18px; border-radius: 6px; font-size: 16px; cursor: pointer; } .result-box { margin-top: 16px; background: #e9f2ff; border: 1px solid #cfe0f5; border-radius: 8px; padding: 16px; } .result-highlight { font-size: 28px; font-weight: bold; color: var(–success-green); background: #eaf7ee; padding: 10px; border-radius: 6px; text-align: center; margin-top: 10px; } .result-details { margin: 10px 0 0; line-height: 1.6; } .article { margin-top: 24px; background: #fff; border: 1px solid var(–border); border-radius: 8px; padding: 16px; } .article h2 { color: var(–primary-blue); margin-top: 0; } .article h3 { margin-bottom: 6px; } @media (max-width: 720px) { .calc-grid { grid-template-columns: 1fr; } }

Tennessee Sales Tax Calculator

Estimate total sales tax in Tennessee using state and local rates.
Enter your purchase details to see the tax breakdown.

How Tennessee Sales Tax Works

Tennessee sales tax is calculated using a combination of a state rate and a local rate. The state rate for general goods is 7.00%, while qualifying grocery or food items are taxed at a reduced state rate of 4.00%. On top of the state portion, each county or city can add a local sales tax rate. The total sales tax rate is the sum of the state rate and the local rate.

Sales Tax Formula

Total Sales Tax Rate = State Rate + Local Rate

Sales Tax Amount = Purchase Amount × (Total Sales Tax Rate ÷ 100)

Total Cost = Purchase Amount + Sales Tax Amount

Example Calculations

Example 1: General Goods

Purchase Amount: $350.00
Local Rate: 2.25%
State Rate (General Goods): 7.00%
Total Rate: 9.25%
Sales Tax: $350.00 × 0.0925 = $32.38
Total Cost: $382.38

Example 2: Grocery/Food Item

Purchase Amount: $120.00
Local Rate: 2.75%
State Rate (Grocery/Food): 4.00%
Total Rate: 6.75%
Sales Tax: $120.00 × 0.0675 = $8.10
Total Cost: $128.10

Common Use Cases

This calculator is helpful for shoppers estimating the final price at checkout, businesses quoting Tennessee clients, and accounting teams verifying collected sales tax. By selecting the correct item category and entering the local rate, you can get a fast and accurate estimate.

function formatCurrency(value) { return "$" + value.toFixed(2); } function calculateSalesTaxTN() { var amount = parseFloat(document.getElementById("amount").value); var localRate = parseFloat(document.getElementById("localRate").value); var itemTypeNodes = document.getElementsByName("itemType"); var itemType = "general"; for (var i = 0; i < itemTypeNodes.length; i++) { if (itemTypeNodes[i].checked) { itemType = itemTypeNodes[i].value; break; } } var exempt = document.getElementById("exempt").checked; var resultEl = document.getElementById("result"); if (isNaN(amount) || amount < 0) { resultEl.innerHTML = "Please enter a valid purchase amount."; return; } if (isNaN(localRate) || localRate < 0) { resultEl.innerHTML = "Please enter a valid local sales tax rate."; return; } var stateRate = itemType === "food" ? 4 : 7; var totalRate = stateRate + localRate; var taxAmount = 0; var totalCost = amount; if (!exempt) { taxAmount = amount * (totalRate / 100); totalCost = amount + taxAmount; } var details = ""; details += "
Purchase Amount: " + formatCurrency(amount) + "
"; details += "
State Rate: " + stateRate.toFixed(2) + "%
"; details += "
Local Rate: " + localRate.toFixed(2) + "%
"; details += "
Total Rate: " + totalRate.toFixed(2) + "%
"; details += "
Sales Tax: " + formatCurrency(taxAmount) + "
"; resultEl.innerHTML = details + '
Total Cost: ' + formatCurrency(totalCost) + '
'; }

Leave a Comment