Change initial character to lower case

D

Dennis A.

In a query expression, how do I change only the initial character in a text
field to lower case? Thanks, group.
 
B

Barry Gilbert

If your source field is called MyText, your expression would be:
CorrectedTex: LCase(Left$(MyText,1)) & Right$(MyText,Len(MyText)-1)

HTH,
Barry
 

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