1.create a new query using the table where the field resides you need updating
2.make the query an update query (from the main menu, go to Query - Update Query)
3.select the field you need to update
in the Update To: section enter the following...
LCase([YourFieldName])
Note, the fieldname will be the same as the field you
selected in Step3.
You could also do this using SQL.
UPDATE TableName SET TableName.YourFieldName = LCase([YourFieldName])
I personally like the first method, but it's up to you what you need to use.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.