> For the complete documentation index, see [llms.txt](https://docs.morevy.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.morevy.ai/docs/how-the-numbers-work/where-every-figure-comes-from.md).

# Where every figure comes from

Morevy does not display a figure it cannot trace to source data.

## The principle

Every figure is computed from the rows you supplied.

The assistant determines what to present and how to explain it. It does not produce the figures. Computed values are supplied by the calculation engine and verified before display; where no verified result exists, nothing is rendered in its place.

```mermaid
flowchart TD
    A["Your question"] --> B["Calculation requested"]
    B --> C["Engine computes<br/>from your rows"]
    C --> D["Presentation proposed"]
    D --> E{"Verified against<br/>the computed result?"}
    E -->|"yes"| F["Rendered"]
    E -->|"no"| G["Not rendered"]
```

This verification is enforced in code rather than by convention. It is the mechanism that allows a figure on screen to be acted upon.

## What is recorded

Beneath every table, the source and its currency:

> Computed by the engine from payments\_export.csv · data as of your 25 July upload · every figure traces to the ingested rows

And behind a disclosure, the calculation steps and the configuration in force when they ran.

## When inputs change

Changing a filter or a column mapping marks affected figures as computed under superseded settings, with the option to recompute. Displayed figures are never silently revised.

Re-running a close produces a comparison against the previous run: which components changed, by how much, and which input differed. Where figures change and no recorded input differs, Morevy reports that explicitly.

## Conditions under which Morevy declines

|                                |                                                                                                          |
| ------------------------------ | -------------------------------------------------------------------------------------------------------- |
| **Unconfirmed column mapping** | Confirmation is required before any calculation.                                                         |
| **Unclassified revenue**       | The close does not proceed until recurring revenue is defined.                                           |
| **Unestablished plan terms**   | A recurring revenue close is declined where terms cannot be established for a material share of revenue. |
| **No verified result**         | Nothing is rendered.                                                                                     |

Each is a case where proceeding would produce a plausible figure that could not be substantiated.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.morevy.ai/docs/how-the-numbers-work/where-every-figure-comes-from.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
