toupper
Syntax:
Value
String
toupper
(
String
str)
Description:
Converts
str
to uppercase.
Examples:
($a1:$a5) = toupper($self)
Before:
A
B
C
1
Hello World
2
My Name is Alex
3
ABCabc
4
4.56
5
XSheet
6
16
41
After:
A
B
C
1
HELLO WORLD
2
MY NAME IS ALEX
3
ABCABC
4
4.56
5
XSHEET
6
16
41
($d1:$d10) = toupper($b)