> 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.

# Int

Rounds the input number down to the largest integer of equal or lesser value.

## Usage

```
Int(number)
```

**number** (required) The number to be rounded.

## Example

(1) Returns 3.

```
Int(3.6)
```

(2) Returns -4.

```
Int(-3.2)
```

(3) Returns the **Int** for each row in the input column.

```
Int([Cost])
```

![](https://files.buildwithfern.com/sigma.docs.buildwithfern.com/22ce24c95f2e032545f0cffd72e1b9f0d9d94d26a8002e2f7fa9d32ca0a08663/assets/docs-images/aea153b-ppp.png)

## Related resources

* [Floor](/docs/floor)
* [Ceiling](/docs/ceiling)
* [Round](/docs/round)