Worldscope

Days Sales Outstanding

Palavras-chave:

Publicado em: 06/08/2025

Days Sales Outstanding (DSO) Calculation

This article explains how to calculate Days Sales Outstanding (DSO), a crucial metric for assessing a company's efficiency in collecting receivables. We will provide a practical Excel formula and discuss its implementation and analysis.

Fundamental Concepts / Prerequisites

Before diving into the DSO calculation, it's important to understand the following terms:

  • Accounts Receivable: The total amount of money owed to a company by its customers for goods or services already delivered.
  • Revenue: The total income generated by a company from its business activities.
  • Number of Days in Period: The number of days covered in the calculation (e.g., 365 for a year, 90 for a quarter, 30 for a month).

Implementation in Excel

The standard formula for calculating DSO is:

DSO = (Accounts Receivable / Total Revenue) * Number of Days in Period

Here's how to implement this in Excel:


= (A2 / B2) * C2

Code Explanation

The Excel formula `=(A2 / B2) * C2` calculates DSO based on the data in the spreadsheet. Let's break it down:

A2: This cell contains the value of Accounts Receivable.

B2: This cell contains the value of Total Revenue.

C2: This cell contains the number of days in the period being analyzed (e.g., 365 for a year, 30 for a month).

The formula first divides Accounts Receivable (A2) by Total Revenue (B2). This result is then multiplied by the number of days in the period (C2) to arrive at the Days Sales Outstanding.

Complexity Analysis

The DSO calculation in Excel involves a simple arithmetic operation. Therefore:

Time Complexity: O(1) - The calculation takes constant time, regardless of the size of the data.

Space Complexity: O(1) - The formula uses a fixed amount of space, independent of the input values.

Alternative Approaches

While the standard formula is widely used, there are variations that incorporate credit sales instead of total revenue. This is particularly useful for businesses where a significant portion of sales are on credit. The formula would be: DSO = (Accounts Receivable / Credit Sales) * Number of Days in Period. The trade-off is that credit sales data needs to be tracked and accurately reported.

Conclusion

Calculating Days Sales Outstanding is straightforward using a simple Excel formula. Understanding its components and potential variations allows for a clear assessment of a company's cash collection efficiency. A lower DSO generally indicates faster receivables collection and better cash flow management. Remember to consistently use either total revenue or credit sales for accurate comparisons over time.