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".
 
Back
Top