Build a Capital Expenditure Tracker

Build a project-level CapEx tracker with planned spend, actual spend, forecast remaining, and budget variance — driven by a Project Code custom dimension.

Capital expenditure usually starts the year as a tidy plan and ends it as a sprawling list of in-flight projects and reforecasts. A good CapEx tracker keeps the picture coherent — project by project, plan vs. actual, with a clear view of remaining spend. This tutorial walks through building one in Workday OfficeConnect using a Project Code custom dimension in Adaptive Planning.

What you’ll build: A project-level tracker with Planned, Actual YTD, Forecast Remaining, Total Forecast, and Variance to Plan columns — refreshable from Adaptive Planning.

What you’ll need:

  • OfficeConnect installed and signed in (Build Your First Report)
  • A Project Code custom dimension in your model with each active CapEx project loaded
  • CapEx accounts (Capital Expenditures or specific asset categories) dimensionalized by Project Code
  • A Plan/Budget version and an Actuals version for the current year
  • Familiarity with custom dimensions (Custom Dimensions and Attributes)

Step 1 — Set up the column headers

1
Add the column headers On a blank sheet, in row 1 type: Project Code, Planned (FY), Actual YTD, Forecast Remaining, Total Forecast, Variance to Plan, % Spent. These are the columns reviewers expect on a CapEx tracker.
2
Add the version and time elements Use a hidden helper area (for example, columns J:M, rows 1-3) to drop your Adaptive Planning context. In J1 drag the Plan version, in K1 drag Actuals, in L1 drag Forecast. In their respective rows below, drop FY (Total Year), Year-to-Date, and Remainder of Year time elements.

Step 2 — Build the project row block

3
Add the first project row Click A2 and drag a Project Code from the Project Code custom dimension (for example, CAP-2025-001). The dimension value populates column A.
4
Populate the Planned column In B2, drag the Capital Expenditures account, scoped to the Plan version and FY time. The cell resolves to that project’s full-year planned spend.
5
Populate Actual YTD In C2, drag the same account scoped to the Actuals version and Year-to-Date time. The cell resolves to spend incurred so far this year on that project.
6
Populate Forecast Remaining In D2, drag the same account scoped to the Forecast version and the Remainder of Year time. This is the project owner’s reforecast for what’s still to come.

Step 3 — Add the calculated columns

7
Compute Total Forecast In E2, write =C2+D2. This is Actual YTD plus Forecast Remaining — the project’s expected full-year landing.
8
Compute Variance to Plan In F2, write =E2-B2. Positive values mean the project is forecasting over budget; negative values mean under.
9
Compute % Spent In G2, write =C2/B2. Format as percentage. This shows how much of the original plan has already been spent — useful for identifying projects that are 80% spent but only halfway through the year.
For admins & power users For projects renamed or restructured under a new Project Code mid-year, the dimension lookup will miss historical spend. Confirm with the project owner whether one code captures all activity or you need to sum across multiple codes.

Step 4 — Scale across projects

10
Use repeating rows by Project Code Rather than copying the row manually per project, configure row 2 as a repeating row scoped on the Project Code dimension. OfficeConnect generates one row per active project on refresh. The full pattern is covered in Repeating Reports.
11
Add a Total row At the bottom, add a Total row that SUMs columns B through F across all projects. The program-level % Spent is =SUM(C)/SUM(B).

Step 5 — Refresh and review

12
Refresh and flag the outliers Click Refresh. Sort by Variance to Plan descending to surface projects at risk of overrun. Use conditional formatting to highlight any % Spent over 90% on projects whose Total Forecast is under plan — those are nearly done with budget to spare.

Result

You now have a project-by-project CapEx tracker that shows in one view which projects are tracking to plan, which are at risk, and which are coming in under budget. Each refresh updates the picture with the latest actuals and project owner reforecasts.

Next steps