convert upper case text to lower case with the first letter upper

J

JH

How do I convert text that is in all upper case to lower case with the first
capitalized
 
S

Steve Schapel

JH,

Make (and run) an Update Query, to update YourField to...
StrConv([YourField],3)
 
Top