How Change format to start with Capital Letters

G

Guest

I want to change the field in a form to format the text input as follows -
van der merwe format to Van Der Merwe. I don't want all letters in Capital

Working in Access 2003
 
G

Guest

Try
=strconv([FieldName] ,vbProperCase)

Or, in a query
NewFieldName: strconv([FieldName] ,3)
 

Ask a Question

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.

Ask a Question

Top