SheetXL - v0.3.20
    Preparing search index...

    Variable CalcStatusConst

    CalcStatus: {
        Pending: "pending";
        Ready: "ready";
        Stale: "stale";
        Streaming: "streaming";
    } = ...

    Represents the calculation status.

    Type declaration

    • ReadonlyPending: "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.

    • ReadonlyReady: "ready"

      The cell's value is up-to-date and reflects the latest calculation.

    • ReadonlyStale: "stale"

      The cell's value may not reflect the latest calculation, typically due to the calculation engine being in manual mode.

    • ReadonlyStreaming: "streaming"

      The cell's value is up-to-date, but the underlying data source is streaming live updates.