Convert Access table of names

G

Guest

I want to merge a table of names/address with Wble ORD documents. However,
the table has name field in all capital letters; I want it converted to
lowercase letters. What do I do?
 
A

Allen Browne

Export a query instead of the table.

In the query, you can type something like this into the Field row:
LCase([NameField])

Or if you want the first letter to remain upper case:
StrConv([NameField], 3)
 
G

Guest

THANK YOU!

Allen Browne said:
Export a query instead of the table.

In the query, you can type something like this into the Field row:
LCase([NameField])

Or if you want the first letter to remain upper case:
StrConv([NameField], 3)

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

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

ohporter said:
I want to merge a table of names/address with Wble ORD documents. However,
the table has name field in all capital letters; I want it converted to
lowercase letters. What do I do?
 

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