changing case from table to query results

M

mikeL

how do I change the capitalized names in a table so that
the results of a query are all lower case? this would be
in Access 02
thanks
mike
 
W

Wayne Morgan

To make the result in a query, create the field as a calculated field and
use the Format command.

In the Field row of the design grid:
NewFieldName: Format([FieldName], "<")
 
W

Wayne Morgan

Another option, place the field in the query as you usually would then right
click the field. Choose Properties from the popup menu and place < in the
Format option.
 
J

John Vinson

how do I change the capitalized names in a table so that
the results of a query are all lower case? this would be
in Access 02
thanks
mike

Create an Update query based on the table; update the field to

LCase([fieldname])

to do it permanently. If you want to leave the table data alone, you
can simply use

NewName: LCase([fieldname])

as a calculated field.
 

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