This function capitalizes all characters that follow a character that is not a letter, within the Text string.
Proper([Text])
Where:
Text is a string of text or a reference to some text.
| Rule | Meaning | 
|---|---|
| Proper("hello. my name is joe") | Capitalizes all characters that follow a non-letter character. The resulting string is "Hello. My Name Is Joe". | 
| Text | Outcome | 
|---|---|
| "test" | "Test" | 
| ".test" | ".Test" | 
| " test" | " Test" | 
| "3test" | "3Test" |