Proper() function

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

Guest

Is there a function in Access that does the same thing Proper() does in
Excel? Or perhaps a work-around?

The other option I can see is exporting to Excel, use the Proper() function
and import back into Access, but that seems rather awkward.
 
jedi008 said:
Is there a function in Access that does the same thing Proper() does in
Excel? Or perhaps a work-around?

The other option I can see is exporting to Excel, use the Proper() function
and import back into Access, but that seems rather awkward.

Check Help file for StrConv()


strConv("bob jones", vbProperCase) returns "Bob Jones"

in a query you would use the literal for the second argument.

strConv("bob jones", 3) returns "Bob Jones"
 

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

Back
Top