Const
Readonly
Pending: "pending"The cell's value is being calculated asynchronously, typically because the function used returned a Promise. All dependent cells will also be in the Pending state. If the promise returns an error or times out, the cell's value will be an error value.
Readonly
Ready: "ready"The cell's value is up-to-date and reflects the latest calculation.
Readonly
Stale: "stale"The cell's value may not reflect the latest calculation, typically due to the calculation engine being in manual mode.
Readonly
Streaming: "streaming"The cell's value is up-to-date, but the underlying data source is streaming live updates.
Represents the calculation status.