UPPER Function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with " {{#seo: |title=UPPER Function |titlemode=append |keywords=Planfix, function, UPPER, UPPER() |description=UPPER Function }} 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 == {| class="wikitable" |- ! style="font-weight: bold" | Formula ! style="font-weight: bold" | Description...")
 
No edit summary
 
(3 intermediate revisions by one other user not shown)
Line 13: Line 13:


The argument '''text''' is mandatory. It is converted to uppercase. The argument can be a reference to text or a text string.
The argument '''text''' is mandatory. It is converted to uppercase. The argument can be a reference to text or a text string.


== Examples ==
== Examples ==
Line 29: Line 28:
|UPPER(<nowiki>{{Task.Name}}</nowiki>)
|UPPER(<nowiki>{{Task.Name}}</nowiki>)
|Returns the text of the variable in uppercase letters
|Returns the text of the variable in uppercase letters
|TASK TITLE
|TASK NAME
|}
|}




== Go To ==
== Go To ==
*[[Standard functions]]
*[[Standard functions | Standard operators and Planfix functions]]
*[[Calculated fields]]
*[[Reports]]

Latest revision as of 13:39, 15 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


Go To