When building forecasts, it’s often important to rely only on the most recent month of closed actuals—without blending in partial or forecasted data. Let’s walk through how to set that up.Documentation Index
Fetch the complete documentation index at: https://docs.runway.com/llms.txt
Use this file to discover all available pages before exploring further.
Step 1: Write the Conditional Forecast Formula
Useif() logic to switch between calculating a rolling average and carrying forward the prior value:
if(lastMonth() = lastClose(), [rolling forecast], [last month's value])
Example:


Step 2: Apply the Formula to Forecast Rows
Set this logic as the default forecast formula for any rows that should follow this smoothing behavior. It will apply automatically across the selected rows in your plan.When to Use This Method
This method is ideal when:- You’re forecasting operational expenses that don’t vary dramatically month to month.
- You want smoother transitions between actuals and forecasted data.
- You’re building a default forecast structure for teammates to iterate on.