gojets1721
Registered User.
- Local time
- Yesterday, 23:45
- Joined
- Jun 11, 2019
- Messages
- 430
Curious if someone could help with this issue. Couldn't find a specific guide online to assist.
I have a table of last names that are entirely uppercase. I want make them proper text. I'm using the following function in an update function that works well:
The problem is I want it recognize apostrophes and dashes, and capitalize the succeeding letter. See the below table for examples:
Is there a way to add onto to / change this code so that any letter after an '-' or an ' ' ' is also capitalized?
I have a table of last names that are entirely uppercase. I want make them proper text. I'm using the following function in an update function that works well:
Code:
StrConv ( [CustomerLastName], 3 )
The problem is I want it recognize apostrophes and dashes, and capitalize the succeeding letter. See the below table for examples:
Before Update | After Update | Ideal |
O'BRYAN | O'bryan | O'Bryan |
SMITH-JONES | Smith-jones | Smith-Jones |
Is there a way to add onto to / change this code so that any letter after an '-' or an ' ' ' is also capitalized?