Proper() function

J

jedi008

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.
 
R

Rick Brandt

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"
 
Top