Text manipulation

Keith

Registered User.
Local time
Today, 18:08
Joined
May 21, 2000
Messages
129
Is there any way to replicate the 'Proper' worksheet function in Access?

Thanks
Keith


[This message has been edited by Keith (edited 06-03-2000).]
 
This will convert the first letter of each word to capitals.

StrConv([yourField],vbProperCase)

HTH
RDH
 
If you use this function in a query, you need to use the vb constant value rather than its name.

StrConv([yourField],3)
 

Users who are viewing this thread

Back
Top Bottom