Formula errors
| Error label | What it means | Example | How to fix |
|---|---|---|---|
TYPE | The tooltip says: “This driver, or one of its formula inputs, is performing an operation across incompatible types or resolves to a non numeric value.” | A Number driver uses dateAdd() and returns a date. | Change the driver to a Date driver, or change the formula so it returns a number. |
CIRC | The driver depends on itself in the same period, directly or through another formula. | Revenue references Total revenue, while Total revenue references Revenue. | Remove the self-referential dependency. If the logic should use a prior period, reference the prior period instead of the current one. |
Blank or unexpected values
Null vs. zero
Runway treatsNULL and 0 differently. 0 is an explicit value. NULL means no value was returned. Features such as Most recent value can pull forward the last known non-null value, but they do not replace an explicit zero.
For more examples, see Propagating sparse data.