If you are using VBA code:
StrConv([FieldName],vbProperCase)
but in a query or form or report, you must use the constant's numeric value:
StrConv([FieldName],3)
StrConv() may have unintended consequenses, as McDaniel will become
Mcdaniel, O'Connor becomes O'connor, ABC becomes Abc, etc.
The only alternative is to have a lookup table of exceptions to compare
words to, and use the table name instead of StrConv() if that exception is
found.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.