Mixed case question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a table with names all in upper case. What is automated way to make
all the records proper case?

Can it be done with an update query?

tia,
 
If your name data is stored in a single field, then you should consider separating it into first
and last name fields (and possibly other fields such as title, surname, middlename, etc.). A
great utility for doing this in called Splitter for Microsoft Access:

http://www.infoplan.com.au/splitter/

This utility can automatically correct the case at the same time that it splits name data.

You can also use an update query with the StrConv function:

Field: YourFieldName
Table: YourTableName
Update To: StrConv([YourFieldName],3)

However, you'll still need to do some manual correction for certain names. For example, the last
name MCMULLIN will be updated to Mcmullin, instead of the correct form, which is McMullin.
Splitter for Microsoft Access is pretty good about handling this type of situation without
requiring a lot of manual intervention.

Tom
___________________________________


I have a table with names all in upper case. What is automated way to make
all the records proper case?

Can it be done with an update query?

tia,
 
That's perfect! Thank you once again.

JMorrell



Arvin Meyer said:
Use and update query on the field:

UPDATE tblMyTable
SET tblMyTable.MyFieldName = StrConv([MyFieldName],3);
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access Downloads
http://www.datastrat.com
http://www.mvps.org/access


JMorrell said:
I have a table with names all in upper case. What is automated way to make
all the records proper case?

Can it be done with an update query?

tia,
 

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