ProperCase Function

The ProperCase function capitalizes every first letter of every word in a string. A good use case is using ProperCase on a first and/or last name.

Example:



%%[
set @FullName = ProperCase([FullName])
]%%
Dear %%=v(@FullName)=%%,

Data Extension:

EmailAddressFullName
test@test.comjohn smith

Output:

Dear John Smith,

Explanation:

The ProperCase function capitalizes the “J” in John and the “S” in Smith. This is helpful if your data is not formatted correctly.

Leave a Reply

Your email address will not be published. Required fields are marked *