The upper( function converts text to UPPER CASE (all caps).
Parameters
This function has one parameter:
text – The text to be converted.
Description
The upper( function converts text to all upper case (all caps).
upper("john smith") ☞ JOHN SMITH
upper("Mary Bishop") ☞ MARY BISHOP
upper("net 30") ☞ NET 30
upper("NEW York") ☞ NEW YORK
upper(30) ☞ 30
As the last line shows, if you pass a number to this function it will be converted to text (like the str( function).
See Also
History
Version | Status | Notes |
10.0 | No Change | Carried over from Panorama 6.0 |