# RTrim

**RTrim** removes trailing spaces from the end of a string.

### Usage

```
RTrim(text)
```

**text** (required)- Text or a column of text to remove the trailing spaces from.

### Example

```
RTrim(" John Doe ")
```

* Returns `” John Doe”`
* Spaces on the left side are not removed

```
RTrim([First Name])
```

* Returns:

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