> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/string-functions/right.md).

# Right

Returns a rightmost substring of a string value

```mathematica
Right("Central region", 6) → "region"
Right("New York City", 4) → "City"
```

#### Inputs

`Right(string, length)`

* `string` - A text value
* `length` - Length of the resulting text
