uppercase

Use the uppercase function to convert a number into the corresponding uppercase character from the alphabet.

 uppercase ( index )

The result of this function is of type TEXT.

This function has one parameter:

  • index, type NUMBER. The index of the character.

The uppercase function returns the indicated character from the alphabet, depending on the active output language.

If a negative value is provided for index, the last character of the alphabet is returned. If index exceeds the number of characters in the alphabet, the number is wrapped around.

Examples

uppercase (1) results in "A"

uppercase (4) results in "D"

uppercase (-1) results in "Z"

uppercase (27) results in "A"

uppercase (27) results in "Æ" (output language DAN)