UCase

L

Lou

Is it possible to use the a UCase exprssion in a query to
change the case of a field and then use it to update the
table? If so how do I get it to update using a update
query?
Thank you in advance.
 
A

Allen Browne

In query design view, select Update from the Query menu.
Access adds an Update row to the grid.

Assuming the field is named "City", you would enter this into the update row
under the City field:
UCase([City])
Then run the query.
 
L

Lou

Allen,
Thank you.
-----Original Message-----
In query design view, select Update from the Query menu.
Access adds an Update row to the grid.

Assuming the field is named "City", you would enter this into the update row
under the City field:
UCase([City])
Then run the query.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

Is it possible to use the a UCase exprssion in a query to
change the case of a field and then use it to update the
table? If so how do I get it to update using a update
query?
Thank you in advance.


.
 

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