💰 Finance

Missouri Paycheck Calculator

Calculate Missouri Paycheck Calculator instantly with accurate financial formulas

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Missouri Paycheck Calculator
Net Pay Per Pay Period
$0.00
Per Paycheck
function calculate() { // Get inputs const salary = parseFloat(document.getElementById("i1").value) || 0; const freq = document.getElementById("i2").value; const filing = document.getElementById("i3").value; const fedAllow = parseInt(document.getElementById("i4").value) || 0; const moAllow = parseInt(document.getElementById("i5").value) || 0; const preTax = parseFloat(document.getElementById("i6").value) || 0; // Pay periods per year const periods = { "weekly": 52, "biweekly": 26, "semimonthly": 24, "monthly": 12 }; const pp = periods[freq] || 26; // Gross per period const grossPerPeriod = salary / pp; // Pre-tax deductions per period const taxablePerPeriod = Math.max(0, grossPerPeriod - preTax); // ---- Federal Tax (simplified 2024 brackets, single) ---- let fedTax = 0; const annualTaxable = taxablePerPeriod * pp; // Standard deduction based on filing let stdDed = 14600; if (filing === "married") stdDed = 29200; else if (filing === "head") stdDed = 21900; const fedTaxableIncome = Math.max(0, annualTaxable - stdDed); // Federal tax brackets 2024 (single, married, head) let bracketRates, bracketThresholds; if (filing === "single") { bracketRates = [0.10, 0.12, 0.22, 0.24, 0.32, 0.35, 0.37]; bracketThresholds = [11600, 47150, 100525, 191950, 243725, 609350, Infinity]; } else if (filing === "married") { bracketRates = [0.10, 0.12, 0.22, 0.24, 0.32, 0.35, 0.37]; bracketThresholds = [23200, 94300, 201050, 383900, 487450, 731200, Infinity]; } else { // head of household bracketRates = [0.10, 0.12, 0.22, 0.24, 0.32, 0.35, 0.37]; bracketThresholds = [16550, 63100, 100500, 191950, 243700, 609350, Infinity]; } let remaining = fedTaxableIncome; let prevThreshold = 0; for (let i = 0; i < bracketRates.length; i++) { const bracketAmt = Math.min(Math.max(0, remaining), bracketThresholds[i] - prevThreshold); fedTax += bracketAmt * bracketRates[i]; remaining -= bracketAmt; prevThreshold = bracketThresholds[i]; if (remaining <= 0) break; } // Adjust for allowances (each allowance ~ $4,300 for 2024) const fedAllowanceDeduction = fedAllow * 4300; fedTax = Math.max(0, fedTax - (fedAllowanceDeduction * 0.10)); // simplified // Per period federal tax const fedTaxPerPeriod = fedTax / pp; // ---- Missouri State Tax ---- // MO uses a modified flat tax: 2% on first $1,000, then 4% up to $2,000, then 5.5% (simplified) let moTax = 0; const moTaxableIncome = Math.max(0, annualTaxable - (moAllow * 2100)); // MO personal exemption ~$2,100 // MO tax brackets 2024: 2% on first $1,121, 4% on next $2,242, 5.5% on remainder if (moTaxableIncome > 0) { const bracket1 = Math.min(moTaxableIncome, 1121); moTax += bracket1 * 0.02; const bracket2 = Math.min(Math.max(0, moTaxableIncome - 1121), 2242); moTax += bracket2 * 0.04; const bracket3 = Math.max(0, moTaxableIncome - 1121 - 2242); moTax += bracket3 * 0.055; } // MO standard deduction based on filing let moStdDed = 12950; if (filing === "married") moStdDed = 25900; else if (filing === "head") moStdDed = 19450; // Simplified: apply standard deduction const moTaxableAfterStd = Math.max(0, moTaxableIncome - moStdDed); // Recalculate MO tax with standard deduction moTax = 0; if (moTaxableAfterStd > 0) { const b1 = Math.min(moTaxableAfterStd, 1121); moTax += b1 * 0.02; const b2 = Math.min(Math.max(0, moTaxableAfterStd - 1121), 2242); moTax += b2 * 0.04; const b3 = Math.max(0, moTaxableAfterStd - 1121 - 2242); moTax += b3 * 0.055; } const moTaxPerPeriod = moTax / pp; // ---- FICA (Social Security + Medicare) ---- const ssRate = 0.062; const medicareRate = 0.0145; const ssWageBase = 168600; // 2024 const ssAnnual = Math.min(annualTaxable, ssWageBase) * ssRate; const medicareAnnual = annualTaxable * medicareRate; // Additional Medicare tax of 0.9% for high earners const addMedicare = annualTaxable > 200000 ? (annualTaxable - 200000) * 0.009 : 0; const ssPerPeriod = ssAnnual / pp; const medicarePerPeriod = (medicareAnnual + addMedicare) / pp; // ---- Total deductions per period ---- const totalFed = fedTaxPerPeriod; const totalMo = moTaxPerPeriod; const totalFica = ssPerPeriod + medicarePerPeriod; const totalDeductions = totalFed + totalMo + totalFica; // ---- Net Pay ---- const netPayPerPeriod = taxablePerPeriod - totalDeductions; const netAnnual = netPayPerPeriod * pp; // ---- Results ---- const formatCurrency = (val) => { return '$' + val.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 }); }; const formatPercent = (val) => { return (val * 100).toFixed(1) + '%'; }; const primaryValue = netPayPerPeriod; const label = "Net Pay Per Pay Period"; const sub = freq.charAt(0).toUpperCase() + freq.slice(1) + " paycheck"; const effectiveTaxRate = (totalDeductions / taxablePerPeriod); let taxColor = "green"; if (effectiveTaxRate > 0.30) taxColor = "red"; else if (effectiveTaxRate > 0.20) taxColor = "yellow"; const results = [ { label: "Gross Pay", value: formatCurrency(grossPerPeriod), cls: "" }, { label: "Pre-Tax Deductions", value: formatCurrency(preTax), cls: "" }, { label: "Taxable Income", value: formatCurrency(taxablePerPeriod), cls: "" }, { label: "Federal Tax", value: formatCurrency(totalFed), cls: totalFed > 500 ? "red" : totalFed > 200 ? "yellow" : "green" }, { label: "Missouri State Tax", value: formatCurrency(totalMo), cls: totalMo > 150 ? "red" : totalMo > 75 ? "yellow" : "green" }, { label: "Social Security", value: formatCurrency(ssPerPeriod), cls: "" }, { label: "Medicare", value: formatCurrency(medicarePerPeriod), cls: "" }, { label: "Total Deductions", value: formatCurrency(totalDeductions), cls: totalDeductions > grossPerPeriod * 0.4 ? "red" : totalDeductions > grossPerPeriod * 0.25 ? "yellow" : "green" }, { label: "Net Annual", value: formatCurrency(netAnnual), cls: netAnnual > 50000 ? "green" : netAnnual > 30000 ? "yellow" : "red" } ]; showResult(primaryValue, label, sub, results); // Breakdown table const breakdownHTML = `
📊 Paycheck Breakdown (${freq})
Gross Pay${formatCurrency(grossPerPeriod)}100%
Pre-Tax Deductions${formatCurrency(preTax)}${formatPercent(preTax/grossPerPeriod)}
Federal Tax${formatCurrency(totalFed)}${formatPercent(totalFed/grossPerPeriod)}
Missouri State Tax${formatCurrency(totalMo)}${formatPercent(totalMo/grossPerPeriod)}
Social Security${formatCurrency(ssPerPeriod)}${formatPercent(ssPerPeriod/grossPerPeriod)}
Medicare${formatCurrency(medicarePerPeriod)}${formatPercent(medicarePerPeriod/grossPerPeriod)}
Net Pay${formatCurrency(net
📊 Missouri Paycheck Breakdown: Gross Pay vs. Net Pay After Taxes and Deductions

What is Missouri Paycheck Calculator?

A Missouri Paycheck Calculator is a specialized financial tool that estimates your net pay—or take-home income—after deducting federal taxes, state taxes, Social Security, Medicare, and other withholdings specific to Missouri. Unlike generic paycheck calculators, this tool accounts for Missouri’s unique state income tax rates, which range from 0% to 4.95% as of the latest tax year, along with local earnings taxes in cities like Kansas City and St. Louis. This makes it essential for anyone earning wages in the Show-Me State who wants to understand their true cash flow before payday arrives.

Employees, freelancers, and small business owners use this calculator to budget accurately, negotiate salaries, or plan for quarterly tax payments. For human resources professionals and payroll administrators, it provides a quick sanity check against payroll software outputs. The tool matters because Missouri’s tax code includes deductions and credits—such as the standard deduction or dependent exemptions—that directly impact your weekly, biweekly, or monthly paycheck.

This free online Missouri Paycheck Calculator eliminates guesswork by applying current IRS and Missouri Department of Revenue withholding tables instantly. You simply input your gross pay, filing status, pay frequency, and any pre-tax deductions to receive a detailed breakdown of your net pay in seconds.

How to Use This Missouri Paycheck Calculator

Using the Missouri Paycheck Calculator is straightforward, even if you’re not a tax expert. The interface is designed for speed and accuracy, requiring only a few key pieces of information to generate a reliable estimate. Follow these five steps to get your personalized paycheck breakdown.

  1. Enter Your Gross Pay: Type in your total earnings before any deductions—this is your salary or hourly wages multiplied by hours worked. For example, if you earn $25 per hour and work 40 hours a week, enter $1,000 for a weekly calculation. The calculator accepts both hourly and salary inputs, so choose the option that matches your pay structure.
  2. Select Your Pay Frequency: Choose how often you get paid: weekly, biweekly (every two weeks), semimonthly (twice a month), or monthly. This setting determines how the annual tax withholdings are divided across your pay periods. A biweekly employee will see different withholding amounts than a monthly employee even with the same annual salary.
  3. Choose Your Filing Status: Pick from Single, Married Filing Jointly, Married Filing Separately, or Head of Household. Your filing status affects both federal and Missouri state tax brackets, as well as the standard deduction amount. For instance, a single filer in Missouri has a standard deduction of $14,600 for federal taxes and $14,600 for state taxes in 2024, while married couples filing jointly get double that.
  4. Add Pre-Tax Deductions: Input any pre-tax contributions such as 401(k) retirement plans, health insurance premiums, Flexible Spending Accounts (FSAs), or Health Savings Accounts (HSAs). These amounts reduce your taxable income before federal and state taxes are calculated, lowering your overall tax liability. For example, contributing $200 per pay period to a 401(k) reduces your taxable income by that amount.
  5. Review Your Results: Click “Calculate” and instantly see your net pay, along with itemized deductions for federal income tax, Missouri state income tax, Social Security (6.2%), Medicare (1.45%), and any additional withholdings. The calculator also shows your effective tax rate and annual projections. Use the breakdown to adjust your W-4 or budget for expenses like rent, groceries, and savings.

For best accuracy, ensure your W-4 allowances match your actual filing status and dependents. If you have multiple jobs or a working spouse, adjust the “Multiple Jobs” checkbox in the calculator to avoid under-withholding. You can also run scenarios with different deduction amounts to see how increasing 401(k) contributions affects your take-home pay.

Formula and Calculation Method

The Missouri Paycheck Calculator uses a multi-step formula that mirrors how employers calculate payroll taxes. The core method subtracts all mandatory deductions from gross pay to arrive at net pay. This approach ensures compliance with IRS Circular E and Missouri’s withholding guidelines, which update annually to reflect tax law changes.

Formula
Net Pay = Gross Pay – (Federal Income Tax + Missouri State Income Tax + Social Security Tax + Medicare Tax + Other Deductions)

Each variable in the formula represents a specific tax or deduction calculated based on your inputs. Federal income tax uses the IRS progressive tax brackets, Missouri state tax uses a flat rate structure with a standard deduction, and FICA taxes are fixed percentages. Pre-tax deductions are subtracted from gross pay before taxes are applied, while post-tax deductions (like Roth 401(k) contributions) are subtracted after.

Understanding the Variables

Gross Pay: Your total earnings before any deductions. For hourly workers, this is hourly rate × hours worked per pay period. For salaried employees, it’s annual salary ÷ number of pay periods per year. Gross pay is the starting point for all calculations.

Federal Income Tax: Calculated using the IRS tax tables for your filing status and pay frequency. The calculator applies the standard deduction first—$14,600 for single filers in 2024—then taxes the remaining income at progressive rates: 10%, 12%, 22%, 24%, 32%, 35%, and 37%. For example, a single filer earning $60,000 annually pays 10% on the first $11,600, 12% on income between $11,601 and $47,150, and 22% on the remainder.

Missouri State Income Tax: Missouri uses a graduated-rate system with rates from 0% to 4.95% for tax year 2024. The state offers a standard deduction equal to the federal amount for most filers. After subtracting the standard deduction, taxable income is taxed at 0% on the first $1,000, 2% on the next $2,000, 2.5% on the next $2,000, 3% on the next $2,000, 3.5% on the next $2,000, 4% on the next $2,000, 4.5% on the next $2,000, and 4.95% on income over $13,000. The calculator also accounts for the Missouri Earned Income Tax Credit (EITC) if applicable.

Social Security Tax: A flat 6.2% of gross pay, capped at the annual wage base of $168,600 in 2024. Once you earn over this threshold, no additional Social Security tax is withheld for the year. This tax funds retirement, disability, and survivor benefits.

Medicare Tax: A flat 1.45% of all gross pay with no cap. High earners (single filers over $200,000, married couples over $250,000) pay an additional 0.9% Medicare surtax, which the calculator automatically applies if your income exceeds these thresholds.

Other Deductions: Includes pre-tax items like health insurance premiums, 401(k) contributions, FSAs, and HSAs, as well as post-tax items like Roth IRA contributions or wage garnishments. Pre-tax deductions reduce both federal and state taxable income, while post-tax deductions do not.

Step-by-Step Calculation

First, subtract all pre-tax deductions from your gross pay to find your adjusted gross income (AGI) for tax purposes. For example, if your gross pay is $2,000 biweekly and you contribute $100 to a 401(k) and $50 to health insurance, your AGI is $1,850. Next, calculate federal income tax on this AGI using the IRS tables for your filing status and pay frequency. Apply the standard deduction proportionally per pay period—for a biweekly single filer, that’s $14,600 ÷ 26 = $561.54. Tax the remaining income at the appropriate brackets.

Then, calculate Missouri state income tax on the same AGI after the state standard deduction. Missouri’s brackets are lower than federal, so the tax is typically smaller. Multiply your AGI by 6.2% for Social Security (up to the wage base) and 1.45% for Medicare. Add any additional Medicare surtax if applicable. Finally, subtract all these taxes plus any post-tax deductions from your gross pay to get your net pay. The calculator rounds to the nearest dollar for simplicity, matching typical payroll practices.

Example Calculation

Let’s walk through a realistic scenario to see the Missouri Paycheck Calculator in action. This example uses common income levels and deductions for a typical employee in St. Louis.

Example Scenario: Sarah is a single filer living in Kansas City, Missouri. She earns an annual salary of $55,000 and gets paid biweekly (26 pay periods per year). She contributes 5% of her gross pay to a 401(k) and pays $75 per pay period for health insurance. She claims the standard deduction for both federal and state taxes.

First, calculate Sarah’s gross pay per pay period: $55,000 ÷ 26 = $2,115.38. Her pre-tax deductions: 401(k) contribution is 5% of $2,115.38 = $105.77, plus $75 for health insurance = $180.77 total. Adjusted gross income (AGI) = $2,115.38 – $180.77 = $1,934.61.

Federal tax calculation: The standard deduction for a single filer is $14,600 annually, or $14,600 ÷ 26 = $561.54 per pay period. Taxable income = $1,934.61 – $561.54 = $1,373.07. Using 2024 federal brackets: 10% on the first $446.15 (since $11,600 ÷ 26 = $446.15) = $44.62. The remaining $1,373.07 – $446.15 = $926.92 is taxed at 12% = $111.23. Total federal tax = $44.62 + $111.23 = $155.85.

Missouri state tax: Missouri standard deduction is also $14,600 annually, so $561.54 per pay period. Taxable income = $1,934.61 – $561.54 = $1,373.07. Missouri brackets: 0% on first $38.46 ($1,000 ÷ 26), 2% on next $76.92 ($2,000 ÷ 26), 2.5% on next $76.92, 3% on next $76.92, 3.5% on next $76.92, 4% on next $76.92, 4.5% on next $76.92, and 4.95% on the remainder. Applying brackets: 0% × $38.46 = $0; 2% × $76.92 = $1.54; 2.5% × $76.92 = $1.92; 3% × $76.92 = $2.31; 3.5% × $76.92 = $2.69; 4% × $76.92 = $3.08; 4.5% × $76.92 = $3.46. Remaining = $1,373.07 – ($38.46 + $76.92×6) = $1,373.07 – $500 = $873.07 taxed at 4.95% = $43.22. Total Missouri tax = $0 + $1.54 + $1.92 + $2.31 + $2.69 + $3.08 + $3.46 + $43.22 = $58.22.

FICA taxes: Social Security = 6.2% × $1,934.61 = $119.95 (under the annual cap). Medicare = 1.45% × $1,934.61 = $28.05. No additional Medicare surtax since her annual income is under $200,000. Total deductions = $155.85 (federal) + $58.22 (Missouri) + $119.95 (Social Security) + $28.05 (Medicare) + $180.77 (pre-tax deductions) = $542.84. Net pay = $2,115.38 – $542.84 = $1,572.54 per biweekly paycheck.

This means Sarah takes home about $1,572.54 every two weeks, or roughly $40,886 annually after all taxes and deductions. She can use this figure to budget for rent, utilities, and savings, knowing her employer withholds the correct amounts.

Another Example

Consider Mark, a married filer with two children living in Springfield, Missouri. He earns $85,000 annually and is paid monthly (12 pay periods). He contributes 10% to a 401(k) and has $200 per month in health insurance premiums. Gross pay per month = $85,000 ÷ 12 = $7,083.33. Pre-tax deductions: 401(k) = $708.33, health = $200, total = $908.33. AGI = $7,083.33 – $908.33 = $6,175.00. Federal standard deduction for married filing jointly is $29,200 annually, or $2,433.33 per month. Taxable income = $6,175 – $2,433.33 = $3,741.67. Federal tax: 10% on first $966.67 ($11,600 ÷ 12) = $96.67; 12% on next $2,775 ($33,300 ÷ 12) = $333; total federal = $429.67. Missouri standard deduction is also $29,200 annually. Taxable income after state deduction = $3,741.67. Missouri tax: using brackets per month, total state tax = approximately $150. Social Security = 6.2% × $6,175 = $382.85; Medicare = 1.45% × $6,175 = $89.54. Net pay = $7,083.33 – ($429.67 + $150 + $382.85 + $89.54 + $908.33) = $7,083.33 – $1,960.39 = $5,122.94 per month. Mark’s family can plan around this higher take-home due to married filing status and dependent exemptions.

Benefits of Using Missouri Paycheck Calculator

Using a Missouri-specific paycheck calculator offers tangible advantages over generic tools or manual calculations. It saves time, reduces errors, and empowers you to make informed financial decisions. Here are five key benefits that make this tool indispensable for Missouri workers.

  • Accurate State Tax Withholding: Missouri’s tax code has unique brackets, deductions, and credits that differ from federal rules. This calculator applies the exact Missouri withholding tables, including the standard deduction and graduated rates up to 4.95%. You avoid overpaying or underpaying state taxes, which can lead to refunds or penalties. For example, if you live in a city with a 1% earnings tax like Kansas City, the calculator includes that local levy automatically.
  • Better Budgeting and Financial Planning: Knowing your exact net pay per pay period lets you create a realistic budget for fixed expenses like mortgage or car payments, variable costs like groceries, and savings goals. You can run multiple scenarios—such as increasing 401(k) contributions or changing your filing status—to see how each decision impacts your cash flow. This is especially valuable for freelancers or gig workers who need to set aside money for quarterly estimated taxes.
  • W-4 Optimization: The calculator helps you fine-tune your Form W-4 to avoid large refunds or unexpected tax bills. By adjusting allowances or adding extra withholding, you can align your paycheck deductions with your actual tax liability. For instance, if you consistently owe money at tax time, the calculator shows how much extra to withhold per pay period to break even.
  • Time Savings for Employers and HR: Small business owners and payroll managers can use the calculator to verify payroll software outputs or estimate new hire costs without running full payroll cycles. It’s a quick way to check if tax withholdings are correct, especially for employees with complex situations like multiple jobs or nonresident alien status. This reduces the risk of IRS penalties for incorrect withholding.
  • Transparency and Education: The calculator breaks down every deduction line by line, helping you understand where your money goes each pay period. This educational aspect is crucial for financial literacy—you see exactly how much goes to federal taxes, state taxes, Social Security, and Medicare. Over time, this knowledge encourages smarter tax planning, such as maximizing pre-tax retirement contributions or exploring health savings accounts.

Tips and Tricks for Best Results

To get the most accurate and useful results from the Missouri Paycheck Calculator, follow these expert tips. Small adjustments in your inputs can significantly change your net pay estimate, so attention to detail matters. Whether you’re an employee or employer, these strategies will help you leverage the tool effectively.

Pro Tips

  • Always use your most recent pay stub to verify gross pay, year-to-date earnings, and current deductions. The calculator is only as accurate as the data you enter, so matching your inputs to real numbers ensures a reliable estimate.
  • Update the calculator whenever tax laws change

    Frequently Asked Questions

    A Missouri Paycheck Calculator is a financial tool that estimates your net pay after subtracting federal and state income taxes, Social Security, Medicare, and any voluntary deductions (like health insurance or 401(k) contributions). It specifically calculates Missouri state income tax, which uses a progressive tax rate system (currently capped at 4.95% for 2024), along with federal withholding based on your W-4 selections. The result shows exactly how much money you will receive in your paycheck after all mandatory and optional deductions are applied.

    The Missouri Paycheck Calculator uses the formula: (Gross Pay – Pre-tax Deductions) × Missouri State Tax Rate (currently 4.95% for most income levels after the standard deduction). For example, if your gross pay is $5,000 per month and you have $500 in pre-tax deductions, your taxable income for Missouri is $4,500. The state tax withheld would be $4,500 × 0.0495 = $222.75. The calculator also applies the federal formula from IRS Publication 15-T, which factors in your filing status, allowances, and pay frequency.

    A healthy range for withholding accuracy is within 2–5% of your actual tax liability at the end of the year. For a Missouri resident earning $60,000 annually, the calculator should estimate within roughly $100–$300 of your true state tax bill. If your actual refund or amount owed is consistently more than 10% of your total tax, the calculator’s inputs (like W-4 allowances or pre-tax deductions) may need adjustment. Most employers’ payroll systems match calculator results within $1–$5 per paycheck if all inputs are correct.

    Missouri Paycheck Calculators are typically 98–99% accurate when you enter exact figures for your gross pay, pay frequency, W-4 allowances, and pre-tax deductions. For a bi-weekly paycheck of $2,500, the difference between the calculator and your actual pay stub is often less than $2. However, accuracy drops if you have complex situations like multiple jobs, bonuses, or non-standard deductions (e.g., wage garnishments). The calculator matches the official IRS and Missouri Department of Revenue withholding tables, which most employers use.

    A key limitation is that most calculators do not account for local city or county taxes, such as the 1% earnings tax in Kansas City or St. Louis, which can reduce your take-home pay by $10–$50 per paycheck. They also cannot predict year-end adjustments like bonuses, overtime that changes weekly, or mid-year tax law changes. Additionally, if you have multiple jobs, the calculator may over-withhold because it assumes each job is your only source of income. Finally, it relies on you accurately entering your pre-tax deductions (e.g., HSA, 401(k) percentage).

    A Missouri Paycheck Calculator provides instant results with 98% accuracy for standard situations, while a CPA can achieve near-100% accuracy by factoring in complex scenarios like itemized deductions, capital gains, or self-employment income. For a typical W-2 employee with no side income, the calculator is just as reliable as a CPA, saving you $150–$300 per hour in professional fees. However, if you have rental properties, freelance work, or significant investment income, a CPA’s manual calculation accounts for quarterly estimated payments and credits the calculator cannot handle.

    Many users mistakenly believe the calculator automatically deducts the 1% Kansas City or St. Louis earnings tax, but most online Missouri Paycheck Calculators do not include these local taxes. For example, if you live in St. Louis and earn $4,000 monthly, the calculator might show $3,200 net pay, but your actual check will be $3,160 after the $40 local tax. This oversight can lead to a budget shortfall of $480 per year. Always check if your specific city imposes a local earnings tax and manually subtract it from the calculator’s result.

    A practical use is for a new Missouri resident moving from Texas (which has no state income tax) to St. Louis. Using the calculator, they can input a $70,000 annual salary and see that their monthly take-home pay drops by about $289 due to Missouri’s 4.95% state tax and the 1% St. Louis earnings tax. This allows them to adjust their housing budget by $3,468 per year before signing a lease. The calculator also helps them decide how to update their W-4 to avoid under-withholding, preventing a surprise tax bill of up to $1,500 at year-end.

    Last updated: May 29, 2026 · Bookmark this page for quick access

    🔗 You May Also Like