Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

table convertion to uppercase

Status
Not open for further replies.

edmundus

Vendor
Apr 16, 2000
1
US
how do I update a column in a table in microsoft access to all uppercase or all lowercase in one step.<br>
 
column called field1 in table table1.<br><br>UPDATE field1 SET table1.field1=ucase(table1.field1);<br><br>
 
you could create an &quot;Update&quot; Query <br>with UCase([myfield]) <br>Make a new query <br>Add the table you want to update<br>Click the &quot;Query&quot; menu then &quot;Update Query&quot;<br>Drag the field you wan to make uppercase down to the grid.<br>In the &quot;Update To:&quot; box put UCase([myfield]) <br>where myfield is the name of your field.<br>then run it.<br>I would also suggest that you make a copy of your Table before you run any update, append or delete query.<br>Cause you can not reverse the results if its wrong.<br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top