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

# RowAvg

Returns the average value of the input numbers.

Unlike [Avg](/docs/avg), which calculates the aggregate average of a group of values in a column, RowAvg can be used to calculate the average of column values across individual rows.

## Usage

```
RowAvg(number, number, ...)
```

**number** \[required] One of a list of numbers to be averaged

## Examples

### Example #1

```
RowAvg(2, 4, 12)
```

Returns 6.

### Example #2

```
RowAvg([Population 2000], [Population 2010])
```

Returns the average of the row values for each row in the \[Population 2020] and \[Population 2010] columns.

![](https://files.buildwithfern.com/sigma.docs.buildwithfern.com/08d5c16ec26b546fdb21a9ec0c97ee90a0ea15154060708fbb3a47a95244344d/assets/docs-images/b43823e-888.png)

## Related resources

* [Avg](/docs/avg)