Forum Discussion
john_h_kraft_1941
May 12, 2022Copper Contributor
access report proper case
in access report how to display a text field to proper case
- George_HepworthSilver Contributor
You can wrap the text values in an expression:
?Proper("PROPER CASE")
Proper CaseNote, however, that this may not always produce the results you expect.
?Proper(" Charles de Batz-Castelmore d'Artagnan")
Charles De Batz-Castelmore D'ArtagnanYou may need to resort to a more sophisticated VBA function if your data is like this.