How to Account for Bad Debt Expense

4 min read

Bad debt expense is an important concept that businesses must account for when it comes to their financial reporting. Regardless of the timeframe a company accounts for, it helps companies determine what portion of their receivables are collectible and what portion are not – and therefore, a bad debt expense. Depending on the receivables’ amount, this bad debt expense can take the form of either the allowance method or the direct write-off method.

Direct Write-Off Method Explained

While a company can see its receivables increase quickly, collections of these receivables might not be possible in the future due to client defaults. The direct write-off method is recommended for accounts with nominal amounts in question. A company’s receivables account sees an immediate write-off with this method. This lowers a company’s revenue, reducing net income. When it comes to accounting for it properly, the journal entry for the direct write-off method is as follows:

 
Description Debit Credit
Bad Debt Expense $500  
Accounts Receivable – ABC Business   $500

Description: Uncollectible ABC Account

Therefore, the journal entry would debit $500 to the Bad Debt Expense and credit $500 to the Accounts Receivable for the ABC Account.

Allowance Method

When it comes to more substantive or material amounts, businesses are inclined to use the Allowance Method because it’s set up to interact well with contra asset accounts that offset accounts receivable. Reported on the balance sheet, a contra asset account has an opposite balance to accounts receivable, and the journal entry is as follows:

Assets

Cash: $500,000

Accounts receivable: $300,000

Less: Allowance for doubtful accounts: $25,000

Equipment: $200,000

Less Accumulated Depreciation: $5,000

Building: $100,000

Less Accumulated Depreciation: $15,000

Since there’s zero impact on income statement accounts, contra accounts are advantageous for companies to use since the revenues aren’t lowered from a direct loss that bad debt expenses can cause with other methods.

When it comes to the Allowance Method in action, the three components are as follows:

First Step: Assess the uncollectible receivables

This is done by either determining the percentage of sales or by the percentage of receivables.

Percentage of Sales Method

This is usually determined by taking a percentage of either net or total credit sales. It’s generally dictated by past trends (both internal and macro economy forecast). For example, 2 percent of $10,000,000 = $200,000.

Percentage of Receivables

This method works by looking at the aging schedule for receivables, including those that are due but not yet late. For example, the receivables that are not late but not yet paid can have a low percentage for the particular bucket. Each successive and later bucket of unpaid receivables would require a higher percentage estimated as uncollectible.

Second Step: Journal entries are notated by entering the bad debt expense as a debit and the allowance for doubtful accounts as a credit.

Third Step: After an account is considered permanently uncollectible, the last two entries are as follows:

Description Debit Credit
Bad Debt Expense $250  
Allowance for Doubtful Accounts   $250
Description Debit Credit
Allowance for Doubtful Accounts $250  
Accounts Receivable – ABC Business   $250

Conclusion: The Importance of Calculating Bad Debt Expense

When it comes to determining a company’s results, it is required in their financial statements. If a company does not include this information, their assets could be inflated, potentially leading to overstating their net income. Calculating bad debt expense also helps companies determine which customers have defaulted on past bills, while at the same time highlighting customers that pay on time.

When it comes to accounting for bad debt expense, businesses that are experts at the two methods can effectively navigate the needs of internal and external audiences.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

How to Account for Bad Debt Expense

May 1, 2025  ·  Accounting News, Blog, Uncategorized

4 min read

Bad debt expense is an important concept that businesses must account for when it comes to their financial reporting. Regardless of the timeframe a company accounts for, it helps companies determine what portion of their receivables are collectible and what portion are not – and therefore, a bad debt expense. Depending on the receivables’ amount, this bad debt expense can take the form of either the allowance method or the direct write-off method.

Direct Write-Off Method Explained

While a company can see its receivables increase quickly, collections of these receivables might not be possible in the future due to client defaults. The direct write-off method is recommended for accounts with nominal amounts in question. A company’s receivables account sees an immediate write-off with this method. This lowers a company’s revenue, reducing net income. When it comes to accounting for it properly, the journal entry for the direct write-off method is as follows:

 
Description Debit Credit
Bad Debt Expense $500  
Accounts Receivable – ABC Business   $500

Description: Uncollectible ABC Account

Therefore, the journal entry would debit $500 to the Bad Debt Expense and credit $500 to the Accounts Receivable for the ABC Account.

Allowance Method

When it comes to more substantive or material amounts, businesses are inclined to use the Allowance Method because it’s set up to interact well with contra asset accounts that offset accounts receivable. Reported on the balance sheet, a contra asset account has an opposite balance to accounts receivable, and the journal entry is as follows:

Assets

Cash: $500,000

Accounts receivable: $300,000

Less: Allowance for doubtful accounts: $25,000

Equipment: $200,000

Less Accumulated Depreciation: $5,000

Building: $100,000

Less Accumulated Depreciation: $15,000

Since there’s zero impact on income statement accounts, contra accounts are advantageous for companies to use since the revenues aren’t lowered from a direct loss that bad debt expenses can cause with other methods.

When it comes to the Allowance Method in action, the three components are as follows:

First Step: Assess the uncollectible receivables

This is done by either determining the percentage of sales or by the percentage of receivables.

Percentage of Sales Method

This is usually determined by taking a percentage of either net or total credit sales. It’s generally dictated by past trends (both internal and macro economy forecast). For example, 2 percent of $10,000,000 = $200,000.

Percentage of Receivables

This method works by looking at the aging schedule for receivables, including those that are due but not yet late. For example, the receivables that are not late but not yet paid can have a low percentage for the particular bucket. Each successive and later bucket of unpaid receivables would require a higher percentage estimated as uncollectible.

Second Step: Journal entries are notated by entering the bad debt expense as a debit and the allowance for doubtful accounts as a credit.

Third Step: After an account is considered permanently uncollectible, the last two entries are as follows:

Description Debit Credit
Bad Debt Expense $250  
Allowance for Doubtful Accounts   $250
Description Debit Credit
Allowance for Doubtful Accounts $250  
Accounts Receivable – ABC Business   $250

Conclusion: The Importance of Calculating Bad Debt Expense

When it comes to determining a company’s results, it is required in their financial statements. If a company does not include this information, their assets could be inflated, potentially leading to overstating their net income. Calculating bad debt expense also helps companies determine which customers have defaulted on past bills, while at the same time highlighting customers that pay on time.

When it comes to accounting for bad debt expense, businesses that are experts at the two methods can effectively navigate the needs of internal and external audiences.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.


Disclaimer 

These articles are intended to provide general resources for the tax and accounting needs of small businesses and individuals. Service2Client LLC is the author, but is not engaged in rendering specific legal, accounting, financial or professional advice. Service2Client LLC makes no representation that the recommendations of Service2Client LLC will achieve any result. The NSAD has not reviewed any of the Service2Client LLC content. Readers are encouraged to contact a professional regarding the topics in these articles. The images linked to these articles are protected by copyright and should not be copied for any reason.

Service2Client

Share
Published by
Service2Client