UPPER Function: Difference between revisions
From Planfix
No edit summary |
(→Go To) |
||
Line 34: | Line 34: | ||
== Go To == | == Go To == | ||
*[[Standard functions| | *[[Standard functions | Standard operators and Planfix functions]] | ||
*[[Calculated fields]] | |||
*[[Reports]] |
Revision as of 14:10, 7 February 2024
The function UPPER() makes all letters in the text uppercase.
Format
- UPPER(text)
The argument text is mandatory. It is converted to uppercase. The argument can be a reference to text or a text string.
Examples
Formula | Description | Result |
---|---|---|
UPPER("text") | Returns the text in uppercase letters | TEXT |
UPPER({{Task.Name}}) | Returns the text of the variable in uppercase letters | TASK NAME |