Skip to main content
Trade receivables represent amounts owed by customers for goods or services already delivered. The balance builds with new invoices and reduces as customers pay. Balance sheet forecasting is always a function of last period’s value, additions, and detractions. See BS fundamentals. For trade receivables, this means trade receivables last period + new invoices issued in period − customer payments received in period.

What approach to use

Driver-based is the right default when revenue is the primary driver. Express the closing balance as a function of revenue and/or payment days. When revenue assumptions change, the receivables balance updates automatically. Use statistical when payment patterns are stable and you want a quick, reliable estimate without rebuilding the revenue link. Use hardcoded when you have a management target, such as a deliberate reduction in payment days or a collection drive. The limitation is that hardcoded values don’t adapt when operations change. Revenue growth, new customers, or revised payment terms all require a manual update.

Where to forecast trade receivables

  • Directly on the balance sheet: right for most cases.
  • Supporting sheet: worth considering when receivables are segmented by customer, channel, or payment terms and each segment has different payment days.

Forecasting approaches

Payment daysUse the built-in receivables() function. It accumulates revenue from previous months based on a payment days assumption, treating each month as 30 days:
= receivables("Revenue", 30)
30 days means customers pay within the same month, so the balance equals one full month of revenue. 45 days means half of last month’s revenue is still outstanding on top of the current month’s full balance.The payment days argument must be hardcoded. You cannot reference a row or cell for it. To change the assumption, update the number directly in the formula.
This approach applies one uniform payment days assumption to all revenue. If your actuals reflect different payment terms across customers or revenue streams, switching to a single driver at the forecast start can create a step change in the balance. Check that the opening forecast balance is consistent with the closing actual balance.
% of revenueA simpler alternative when the day-count framing isn’t useful. Add a Trade receivables % assumption and apply it to monthly revenue:
= "Revenue"[0]
* "Trade receivables %"[0]
Cash flowThe change in trade receivables flows automatically to the working capital section of the cash flow statement. An increase in the balance is a cash outflow; a decrease is a cash inflow. See cash flow fundamentals for how working capital movements feed the cash flow statement.