ProperCase Function

Description:
Capitalise the first letter of each word in a text value and convert all other letters to lowercase.
This function is equivalent to
CapitalsCase( LowerCase(
value
) )
.
Returns:
Text
Parameter:
Parameter
Data Type
Description
1
Text
The text.
Example:
When using functions inside a field, remember the field brackets:
{ProperCase(VariableName)}
or more usually with the Format keyword:
{SellerAddress Format Proper}
Expression
Result
ProperCase( "111 ninth avenue, new york, USA" )
"111 Ninth Avenue,New York,Usa"

Related content