Uppercase notation in access 2007

S

SDS2

Hello,

I have a table tblPupils in access 2007.
In this table there is a column called "town". All the towns are in
lowercase.
Now, how can I change all town names to uppercase at once? The property
windows maybe?
I don't know.

Can anybody help me out?


Thanks in advance.



Stan
 
S

SDS2

thanks a lot

Douglas J. Steele said:
Use an Update query:

UPDATE tblPupils
SET town = UCase([town])

--
Doug Steele, Microsoft Access MVP
http://www.AccessMVP.com/DJSteele
(no e-mails, please!)

SDS2 said:
Hello,

I have a table tblPupils in access 2007.
In this table there is a column called "town". All the towns are in
lowercase.
Now, how can I change all town names to uppercase at once? The property
windows maybe?
I don't know.

Can anybody help me out?


Thanks in advance.



Stan
 

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