# Text formatting functions

<table><thead><tr><th width="207">NAME</th><th width="510">DESCRIPTION</th><th data-hidden>SYNTAX</th><th data-hidden>EXAMPLE</th><th data-hidden>EXPLANATION</th></tr></thead><tbody><tr><td><a href="/pages/g57AiKg68IbVFrJQb73E">CONCATENATE</a></td><td>Concatenates two or more text strings into one string</td><td>CONCATENATE(string1, string2, ..)</td><td>CONCATENATE("Today's price is ",TEXT(6000,"$###,###.00"))</td><td>Will return "Today's price is $6,000</td></tr><tr><td><a href="/pages/v59bKYcwtAyqDYlB7kpl">HYPERLINK</a></td><td>Returns hyperlinked text which will navigate to a given URL</td><td></td><td></td><td></td></tr><tr><td><a href="/pages/bZNT068l190DO2jb56GO">LEFT</a></td><td>Extracts text from the left of the value up to the number of characters specified</td><td>LEFT(text/number, [num_chars])</td><td>LEFT([Full Name],4)</td><td>When field Full Name has values such as Johny Rivers, this will return John</td></tr><tr><td><a href="/pages/qVJndGSVQy1yBi1j9DoS">LOWER</a></td><td>Converts a text string into lowercase</td><td></td><td></td><td></td></tr><tr><td><a href="/pages/LEDMWtWzdw4dL9BGfq6F">MID</a></td><td>Extracts text from the mid of a string from the position provided up to the number of characters specified in length</td><td>Mid (text, position, length)</td><td>MID([Full Name],0,7)</td><td>When field Full Name has values such as Johny Rivers, this will return Johny R</td></tr><tr><td><a href="/pages/WlGnZex2dEhZWj1WGh1Z">PROPER</a></td><td>Converts the first character of a text string into uppercase</td><td></td><td></td><td></td></tr><tr><td><a href="/pages/FlNgqP1Q1HTtYcj6MK2I">REPLACE</a></td><td>Replaces an input text string with a given value</td><td></td><td></td><td></td></tr><tr><td><a href="/pages/ekINXVnvLfLajZGXNPCB">REPT</a></td><td>Repeats a given text string a specified number of times</td><td></td><td></td><td></td></tr><tr><td><a href="/pages/mzisBM8KFTSBT9w7tsSw">RIGHT</a></td><td>Extracts text from the right of the value up to the number of characters specified</td><td>RIGHT(text/number, [num_chars])</td><td>RIGHT([Full Name],6)</td><td>When field Full Name has values such as Johny Rivers, this will return Rivers</td></tr><tr><td><a href="/pages/5KhPB8q84Jzh5HjbXuMX">TEXT</a></td><td>Formats the value to the given format string</td><td>TEXT(value, format)</td><td>TEXT(6000,"$###,###.00")</td><td>Will return $6,000</td></tr><tr><td><a href="/pages/PmPfsTfqBeVr6qzliXqj">TRIM</a></td><td>Removes leading and trailing spaces</td><td></td><td></td><td></td></tr><tr><td><a href="/pages/PE87a7Gu6ALinCSPE94j">UPPER</a></td><td>Converts a text string into uppercase</td><td></td><td></td><td></td></tr><tr><td><a href="/pages/cbLsrqVTfD9zgjYTFIyR">VALUE</a></td><td>Converts a text string that represents a number to a number</td><td>VALUE(value:string)</td><td>VALUE(MID”ABC-123-WEW”,5,3))</td><td>Returns “123” as number</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.inforiver.com/premium-table/formula-syntax/text-formatting-functions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
