> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://help.sigmacomputing.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://help.sigmacomputing.com/_mcp/server.

# CumulativeMin

> Use the Sigma CumulativeMin function to identify the minimum value of a column up to and including the current row value.

The **CumulativeMin** function identifies the minimum value of a column up to and including the current row value.

## Syntax

```
CumulativeMin(column)
```

Function Arguments:

|            |                                                                 |
| :--------- | :-------------------------------------------------------------- |
| **column** | The column to reference when evaluating the cumulative minimum. |

Cumulative functions depend on the order of the referenced column. When you change the column's sort order, the function output may change.

## Example

```
CumulativeMin([Sales])
```

A table contains the monthly sales for a store. The **CumulativeMin** function can be used to find the minimum monthly sales amount up to and including the current month.

![](https://files.buildwithfern.com/sigma.docs.buildwithfern.com/209ceace9eeee461db02bdbe1a4ae3a51e137e15794bf5d7fb08d89ede8a881e/assets/docs-images/a630398-image.png)

***

(No changes were needed as the content was already valid MDX.)

## Related resources

* [CumulativeMin](/docs/cumulativemin)
* [Min](/docs/min)
* [MovingMin](/docs/movingmin)