Build a 13-Week Cash Forecast
The 13-week cash forecast is the treasury team’s most-used artifact. It projects weekly cash inflows and outflows over a rolling window so leadership can see liquidity coming weeks before it arrives — or fails to. This tutorial walks through building one in Workday OfficeConnect against a model with weekly cash forecasting enabled.
What you’ll build: A treasury-format report with 13 weekly columns showing Beginning Balance, Receipts (by category), Disbursements (by category), Net Cash Flow, and Ending Balance — refreshable from Adaptive Planning.
What you’ll need:
- OfficeConnect installed and signed in (Build Your First Report)
- A model configured with weekly time granularity for cash accounts
- Cash flow accounts broken into Receipts (AR collections, other inflows) and Disbursements (Payroll, AP, Tax, Debt Service, CapEx, Other)
- An opening cash balance loaded for the first week
- Familiarity with time contexts (Time and Contexts)
Step 1 — Set up the weekly columns
WE mm/dd so the columns read as the week-ending dates. This is the treasury convention.Step 2 — Build the cash flow row structure
Beginning Balance, a Receipts: header, AR Collections, Other Receipts, Total Receipts, a Disbursements: header, Payroll, AP Payments, Tax, Debt Service, CapEx, Other Disbursements, Total Disbursements, Net Cash Flow, and Ending Balance.Step 3 — Populate receipts and disbursements
=SUM(B[AR Collections]:B[Other Receipts]) and copy across. This is the weekly cash inflow total.=SUM(B[Payroll]:B[Other Disbursements]) and copy across. Disbursements are stored as positive values in the model and subtracted later in Net Cash Flow.Step 4 — Compute Net Cash Flow and Ending Balance
=B[Total Receipts] - B[Total Disbursements] and copy across. This is the weekly change in cash.=B[Beginning Balance] + B[Net Cash Flow]. From C onward, last week’s ending becomes this week’s beginning — write =B[Ending Balance] + C[Net Cash Flow] and copy across C:N. Optionally, link the Beginning Balance row from week 2 forward to the prior week’s ending.Minimum Cash and Headroom rows under Ending Balance to show the cushion above a covenant or operating minimum. CFOs read the Headroom row first — the gap to the floor matters more than the absolute level.Step 5 — Refresh, format, and stress-test
Result
You now have a rolling 13-week cash forecast that updates automatically each Monday. Treasury sees the runway week by week; the CFO sees whether the next covenant test is comfortable or tight. The report holds its shape week after week — only the data refreshes.
Next steps
- Pair the cash forecast with the period close cash flow statement — see Cash Flow Statement
- Make the rolling-period mechanic do the same job for monthly views — see Rolling 12-Month Report
- Run downside scenarios alongside the base case — see Scenario Comparison