Capitalizing only first intitial of names

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do you set the format so that only the first letter of a name is
capitalized.
Example: john doe = John Doe after formatting..

Thanks

Dakota
 
Dakota

Depending on the version of Access you are running, you can use the
StrConv() or Proper() functions to capitalize the first letter of a text
string.

To get John Doe from john doe, you'd need to have "john" and "doe" as
separate fields.
 
Jeff Boyce said:
Dakota

Depending on the version of Access you are running, you can use the
StrConv() or Proper() functions to capitalize the first letter of a text
string.

To get John Doe from john doe, you'd need to have "john" and "doe" as
separate fields.

--
Regards

Jeff Boyce
<MS Office/Access MVP>

?StrConv("john doe",vbProperCase)
John Doe

Dakota, this should help, but keep in mind it won't fix everything.

Eric von Holden
Thomas MacEvity
MaryAnn Lewis
BillyJoe McNight

HTH,
Randy
 

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

Similar Threads


Back
Top