Setting Proper Case in Table

  • Thread starter Thread starter Skymgr
  • Start date Start date
S

Skymgr

Is there a way of making the text fields appear as Proper
Case even if the text is typed in all caps or lower case?

Thanks
 
Is there a way of making the text fields appear as Proper
Case even if the text is typed in all caps or lower case?

Thanks

You can run an Update query updating the field to

StrConv([fieldname], 3)

Note that this will turn a perfectly correct name like "MacDonald"
into "Macdonald", and "van der Steen" into "Van Der Steen".
 

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

Back
Top