# LTrim

Removes leading spaces from the beginning of a given string.

### Usage

```
LTrim(text)
```

**text** (required)- A string or column where each row contains a string.

### Example

```
LTrim(" John Doe ")
```

* Returns  “John Doe "
* Spaces on the right side are not removed

```
[LTrim of Names] = LTrim([Names])
```

* Returns:

<figure><img src="https://files.readme.io/54c645f-mceclip0_3.png" alt=""><figcaption></figcaption></figure>
