ProperCase()

Returns specified string with the first letter of each word capitalized.

The ProperCase() function has one parameter:

  • sourceString (string): Required. The string to convert to proper case.

To use the function, pass it a string that you want to convert to proper case. The function converts the first letter of each word to uppercase, regardless of the length of the word.

This example converts certain address strings from all-caps to proper case, and then uses the Concat() function to combine them.

The function returns the specified strings in proper case.