Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

[b]Convert Only first letter of text in capital in fields[/b]

Status
Not open for further replies.

yog2go

Programmer
Jul 22, 2004
18
US
Suppose I have a table with fields:

First Last
STEVEN MAKI
JAMES FURNISH
MONICA GARCIA

I need to keep only first letter of each name in capital, rest not in capital. i.e.
Steve Maki
James Furnish
Monica Garcia

Is there any way you can directly format this fields in design view of table using Format property. Or you only can do using VBA Code?
Can you suggest how to do this?

Thanks in advance.
 
In VBA you may use the StrConv function with vbProperCase as conversion parameter.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top