It’s Your Money: Why Not Get Your Tax Withholding Right?

The IRS issued about 95 million federal income tax refunds by May 12, 2023 (for tax year 2022), averaging $2,812.1 You might consider this type of windfall a stroke of good fortune, but is it really? You probably wouldn’t pay someone $234 each month to receive $2,812 back at the end of a year. But that’s essentially what a tax refund is — the repayment of your interest-free loan to the government.



If you received a large refund on your 2022 return, consider reducing your federal income tax withholding, which would leave you with a bigger paycheck. Taking home more of your pay may let you put that money to better use. For example, you may be able to pay off credit-card debt sooner, build up your emergency savings, or contribute more to a retirement account. If your tax bill was higher than you expected and you had to scramble for the money to pay it, bumping up your withholding might help you avoid a similar situation next April.

In any case, it’s a good idea to check your withholding periodically. This is particularly important when something changes in your life; for example, if you move, get married, divorce, or have a child; you or your spouse change jobs; or your financial situation changes significantly. The IRS has an online tool (the Tax Withholding Estimator) that can help you determine whether — and how much — to adjust your withholding.


Federal Tax Brackets for 2023

Marginal tax rate: Single taxpayers: 10%: Income up to $11,000, 12%: $11,001 to $44,725, 22%: $44,726 to $95,375, 24%: $95,376 to $182,100, 32%: $182,101 to $231,250, 35%: $231,251 to $578,125, 37%: income over $578,125. Married couples filing jointly: 10%: income up to $22,000; 12%: $22,001 to $89,450; 22%: $89,451 to $190,750; 24%: $190,751 to $364,200; 32%: $364,201 to $462,500; 35%: $462,501 to $693,750; income over $693,750.


The amount of federal income tax withheld from each paycheck is based on the information on your W-4 Form, which may have been filled out a long time ago. If you decide to make an adjustment, you will need to complete a new W-4 and submit it to your employer.

<script> // Contact Validator $('body.seminars').find("header").nextUntil("#footer").wrapAll( "
"); $.get('/preview/team.htm', function (agentList) { var postList = $('#portfolio'); var agentData = Array(); $(agentList).find('.agent_list_item').each(function (i, v) { agentData[i] = Array(); var dataUrl = $(this).attr('data-findid'); var bioUrl = $(this).find('h3 a').attr('href'); var name = $(this).find('h3 a').html(); var title = $(this).find('p').html(); var newRow = $( '

' + name + '

' + title + '
'); postList.prepend(newRow); $('#portfolio > div').each(function () { var bioUrl = $(this).find("a.load-bio").attr('href'); $(this).find('.team-image').load(bioUrl + ' #cardInfo img'); $(this).find('div.bioSnippet').load(bioUrl + ' #vcardBio'); }); }); }); $.validator.setDefaults({ submitHandler: function (e) { var _f = $('form'); if (_f.find(".antispam input").val() != "not spam") { // honeypot was populated. don't submit return false; } else { var url = "form_proc.cfm"; var formData = $("form").serializeArray(); $.post(url, formData).done(function (data) { console.log('Form submitted'); }); console.log(formData); // Clear fileds once form is submitted $('form').closest('form').find("input[type=text], textarea").val(""); $('.customsection5 form').empty().html('

Thank You!

'); } } }); $('form').each(function () { $(this).validate({ rules: { name: "required", email: { required: true, email: true }, phone: { required: true, phoneUS: true } }, messages: { name: "Name is required", phone: "Phone is required", email: "Email address is incorrect" } }); }); jQuery(document).ready(function () { $('body').addClass('stretched'); $('body:not(.resources) #page-title:first-of-type').remove(); $(".price-range-slider").ionRangeSlider({ type: "double", prefix: "$", min: 200, max: 10000, max_postfix: "+" }); $(".area-range-slider").ionRangeSlider({ type: "double", min: 50, max: 20000, from: 50, to: 20000, postfix: " sqm.", max_postfix: "+" }); jQuery(".bt-switch").bootstrapSwitch(); }); var jumpToAnchor = function (event, anchor) { var anchor = anchor.split('#')[1]; event.preventDefault(); document.getElementById(anchor).scrollIntoView(); }