Change all upper case letters to lower case

G

Guest

All my data in Access is now upper case. I wish to change it all to lower
case (even better would be to keep first letter of each word upper and make
all other letters lower).
 
S

storrboy

Check the usage of StrConv(). You could likely put it in a update
query as the new value (ie. Set [FieldName] = StrConv([FieldName],
[ConvertType])
 
F

fredg

All my data in Access is now upper case. I wish to change it all to lower
case (even better would be to keep first letter of each word upper and make
all other letters lower).

TO CHANGE THIS to
to change this:
[FieldName] = LCase([FieldName])

TO CHANGE THIS to
To Change This:
[FieldName] = Str(Conv([FieldName],3)

Note that the above will incorrectly capitalize names which should
contain more than one capital letter, i.e. McDonald, O'Brien, IBM, as
well as other names which should not be capitalized at all, i.e. van
der Meer, etc.
 

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