What is a Write-Off?

Write-offis an accounting term referring to an action whereby the book value of an asset is declared to be 0.  A write-down also lowers asset book value, but it does not take the value to 0. In either case, the loss enters the accounting system as an expense.

Write-off and write-down are nouns naming actions, and the non-hyphenated phrases write off and write down are verbs for taking that action.

Assets can lose book value or become worthless for a variety of reasons.

One frequent use for the write-off occurs when a seller's accounts receivableassets become non-collectible. In that case, the seller writes off the debt by registering a Bad debt expense

A write-off (or write-down) is also called for when inventory assets lose some or all of their value. Note that inventory can lose value through obsolescence, changes in market demand, damage, spoilage, or theft.

Purpose of the Write Off

In any case, accounting write-offs serve two purposes:

  • Firstly, write-offs support accounting accuracy objectives
  • Secondly, the "write-off" creates tax savings for asset owners. These actions reduce tax liability by creating (non-cash) expenses that result in lower reported income.

Broader Meaning of Write Off

Note by the way that the term is also used informally and more broadly to mean "worthless." In this sense, "write-off" might refer to a project, initiative, or program that is abandoned, or stopped, because it is not expected to deliver hoped-for results. Or write-off can merely refer to an investment of any kind that is now worthless.

Explaining Write Off in Context

Sections below further define, explain, and illustrate write off in context with related terms and concepts from financial accounting and finance, focusing on three themes:

  • First, the accounting definitions of Write-Off and Write-Down.
  • Second, example transactions that show how Accountants write off bad debt and other losses.
  • Third, how and why accountants write down inventory losses.

Contents

 

Related Topics

How Do Firms Write Off Bad Debt?

 

Sales transactions in business usually include payment timing provisions, such as "Net 30 from receipt of invoice." An invoice with this annotation means that payment is due no later than 30 days from invoice receipt. When a customer is late in paying, however, most companies continue to carry the obligation under "Accounts receivable" for some time. During this time, they use various means to encourage the customer to pay (see Bad Debt).

The Decision to Write Off a Bad Debt

Most firms, however, also have a specified cutoff period which may be something like 30, 60, 90, or 120 days, beyond which the firms must choose between two possible actions:

  • Firstly, the company may decide to write off the obligation as a bad debt.
  • Secondly, the company may choose instead to refer the debt to a collection service or their lawyers for further legal action.

Note that when accountants write off a debt, the customer's obligation to pay remains. Writing off the debt serves only to improve the company's accuracy in accounting.

Firms may also decide to write off a bad debt when it becomes clear for other reasons that the customer will never pay. They may admit this reality when, for instance, the customer goes out of business, other creditors sue the customer, or the customer challenges the legitimacy of the obligation.

"Bad Debt" Write-Off: Impact on Financial Statements

Specific "bad debt" write-off actions are standard accounting practice for every firm that uses accrual accounting and a double-entry accounting system. Writing of obligations in this way means making two accounting system accounts:

  • Firstly, the firm debits the amount of the debt to an account. This account is a non-cash account. "Bad debt expense
  • Secondly, the firm credits the same amount to a contra asset account, "Allowance for doubtful accounts."

Writing off the debt in this way therefore directly impacts two accounting system accounts: Bad debt expense and Allowance for doubtful accounts. Changes in these accounts, in turn, involve other accounts and the firm's financial reports as follows:

Income Statement Impact

Companies report revenues earned during the period on the Income statement. Note that "earned revenues" include those that are still payable. And, all "earned revenues" are carried in a Balance sheet "Current assets" account, "Accounts receivable." This account is itself is not an Income statement line item, but its balance is part of the Income statement item Total net sales Revenues.

When the period includes a bad debt write off, however, the Income statement does include the Bad debt expense balance as a line item. Items of this kind appear typically under "Operating expenses," below the Gross profit line. As a result, Bad debt expense from a write off lowers Operating profit and bottom line Net income.

Balance Sheet Impact

A bad debt write-off adds to the Balance sheet account, Allowance for doubtful accounts. And this, in turn, is subtracted from the Balance sheet Current assetscategory Accounts receivable. The result appears as Net Accounts receivable. The write off, in other words, means that Net Accounts receivable is less than Accounts receivable.

Statement of Changes in Financial Position (Cash Flow Statement)

Bad debt expense also appears as a non-cash expense item on the Statement of changes in financial position (Cash flow statement). Bad debt expense from a write off is subtracted from Sales Revenues, lowering Total Sources of Cash.

Statement of Retained Earnings

Net income (Net profit) from the Income statement impacts the Statement of retained earnings in two ways.

  • Firstly, as dividends paid to shareholders
  • Secondly, as retained earnings

At period end, the firm's Board of Directors decides how to distribute Net Income between "Dividends" and "Retained earnings." A write off impacts Net income, which means that the action also lowers dividends and retained earnings on the Statement of retained earnings.

For more on these transactions, and examples, see the articleAllowance for Doubtful Accounts.

随机推荐

  1. 【GStreamer开发】GStreamer基础教程05——集成GUI工具

    目标 本教程展示了如何在GStreamer集成一个GUI(比如:GTK+).最基本的原则是GStreamer处理多媒体的播放而GUI处理和用户的交互. 在这个教程里面,我们可以学到: 如何告诉GStr ...

  2. const的用法及它在C语言和C++中的不同

    (1)可以定义const常量. (2)Const可以修饰函数的参数和返回值,甚至定义体.被const修饰的东西都受到强制保护. (3)Const修饰成员函数时,用于成员函数前面,则返回值不能作为左值. ...

  3. python 线程队列LifoQueue-LIFO(36)

    在 python线程队列Queue-FIFO  文章中已经介绍了 先进先出队列Queue,而今天给大家介绍的是第二种:线程队列LifoQueue-LIFO,数据先进后出类型,两者有什么区别呢? 一.队 ...

  4. myeclipse 相关问题

    [如何设置 Tab 键为四个空格] https://blog.csdn.net/QQ826688096/article/details/90543252

  5. C++ 用 vector 生成三维数组,并计算行、列、高

    //Microsoft Visual Studio 2015 Enterprise //用vector生成三维数组,并计算行.列.高 #include <iostream> #includ ...

  6. 【已解决】每次打开Excel时会同时打开一个空的Excel表格

    每次打开Excel时会同时打开一个空的Excel表格,情况如图. 官方解法如下,本人验证有效: 方法1, 请到以后路径中检查是否存在与空白文件夹同名字的Excel文件,删除它. C:\Users\\A ...

  7. Go语言学习笔记(8)——包和结构体

    包 —— 每个可执行的应用程序必须包含一个主函数,它是执行的入口点.主函数应该存在main包中. 结构体: 通过 . 操作符访问结构体的各个成员! 1. 定义结构体类型person: type per ...

  8. maven配置阿里镜像

    在conf\settings.xml 在<mirrors>里面添加   <mirror>    <id>nexus-aliyun</id>    < ...

  9. Map、FlatMap 和 Reduce

    Map 作用是生成一个新数组,遍历原数组,将每个元素拿出来做一些变换然后 append 到新的数组中. [1, 2, 3].map((v) => v + 1) // -> [2, 3, 4 ...

  10. Kettle部署笔记

    1.启动脚本(启动job) /u02/www/data-integration/kitchen.sh -file:/u02/www/data-integration/job.kjb -logfile= ...