@PROPER Function

J

JimP

Is there an MS-Access or VBA function that duplicates the Excel @PROPER
function, i.e. capitalizes the first character of a word and makes the rest
lowercase?
 
D

Dirk Goldgar

JimP said:
Is there an MS-Access or VBA function that duplicates the Excel @PROPER
function, i.e. capitalizes the first character of a word and makes the
rest lowercase?


See the online help for StrConv.
 
J

John W. Vinson

Is there an MS-Access or VBA function that duplicates the Excel @PROPER
function, i.e. capitalizes the first character of a word and makes the rest
lowercase?

Strconv(<string>, 3)

will do it - in VBA you can use vbProperCase as a synonym for 3.
 

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