> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anlytic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Repeat

Repeats a text value a given number of times. A count below 1 returns Null.

**Category:** `text`

**Syntax:**

```
Repeat([text_column], number)
```

**Returns:** `StringColumn`

**Context Filtering:** ✓ Yes

## Parameters

| Name     | Type             | Required | Description                           |
| -------- | ---------------- | -------- | ------------------------------------- |
| `string` | `text\|column`   | ✓ Yes    | The text that the function repeats.   |
| `number` | `number\|column` | ✓ Yes    | The number of times the text repeats. |

**Allowed Column Types:** STRING, TEXT

## Validation

* Minimum parameters: 2
* Maximum parameters: 2

## Examples

```
Repeat([Separator], 3)
```

Repeats each separator three times.

## Related Functions

* [Concat](concat) - Combine different values instead of repeating one
* [Len](len) - Count the characters in the repeated value
