Changing case in Access

T

Theresa

I recieved an access data table from someone else. All the 6,000 records are
in uppercase which creates a mess when outputting reports and letters. How
do I change the case in specific fields within Access? I would like to change
Names addresses and Cities to title case. I am running Access 2002
 
D

Douglas J. Steele

Check out the StrConv function.

An update query along the lines of

UPDATE MyTable
SET MyName = StrConv([MyName], 3),
MyAddress = StrConv([MyAddress], 3),
MyCity = StrConv([MyCity], 3)

shoud do it.
 

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