FirstLetterCase Function
Description:
Capitalise the first character of a text value.
Returns:
Text
Parameter:
Parameter | Data Type | Description |
|---|---|---|
1 | Text | The text. |
Example:
When using functions inside a field, remember the field brackets:
{FirstLetterCase(VariableName)}
or more usually with the Format keyword:
{SellerAddress Format FirstLetter}
Expression | Result |
|---|---|
FirstLetterCase( "thomson reuters,111 ninth avenue, new york, USA" ) | "Thomson reuters,111 ninth avenue, new york, USA" |
FirstLetterCase( "111 ninth avenue, new york, USA" ) | "111 ninth avenue,new york,USA" |