Automatic conversion to Upper Case

J

Jon

Anyone know how to program reports to print out some fields, eg name fields,
that will automatically correct lower case characters to upper case,
especially for the first letter?
E.g.: john smith --> John Smith or m --> M

Thanks in advance.
 
F

Fredg

Jon,
Do you want UPPER CASE or Upper Case?

1) [ControlName] = UCase([ControlName])
or..
2) [ControlName] = strConv([ControlName],3)

Some names do not get properly converted because they have more than one
capital letter in it, i.e. McDonald - Mcdonald, ABC - Abc, etc.
 

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