Changing all Caps in a column

J

Jeff

I am fairly new to Access and am not familiar with how to change the case
within a column.

I have a database of 300K records and one of the fields the entire column is
all capitals. I want to convert the text to make it proper where the first
letter of each word is capitalized.

I appreciate your help and look foward to your input / advice.
 
S

Steve Schapel

Jeff,

Make sure you have a backup of the database.

Make a query based on the table, and add the field in question to the query
design grid.

Make it into an Update Query (via the Query menu, unless you have Access
2007).

In the Update To row of the query design grid, enter the equivalent of:
StrConv([NameOfYourField],3)

Run the query (click the red [!] icon on the toolbar/ribbon.
 
J

Jeff

I am running Access 2007 and am unsure as to where to type the commandyou
suggest
--
Thanks in advance for your help
Regards,
Jeff


Steve Schapel said:
Jeff,

Make sure you have a backup of the database.

Make a query based on the table, and add the field in question to the query
design grid.

Make it into an Update Query (via the Query menu, unless you have Access
2007).

In the Update To row of the query design grid, enter the equivalent of:
StrConv([NameOfYourField],3)

Run the query (click the red [!] icon on the toolbar/ribbon.
 
S

Steve Schapel

Jeff,

In Access 2007, you make a query via the Create=>Query Design ribbon button.
Add the requisite table to the query. Then to make it an Update Query, you
should see an 'Update' button on the 'Query Type' tab of the query design
ribbon.
 

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