Keith Registered User. Local time Today, 18:08 Joined May 21, 2000 Messages 129 Jun 3, 2000 #1 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).]
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).]
R. Hicks AWF VIP Local time Today, 12:08 Joined Dec 23, 1999 Messages 619 Jun 3, 2000 #2 This will convert the first letter of each word to capitals. StrConv([yourField],vbProperCase) HTH RDH
This will convert the first letter of each word to capitals. StrConv([yourField],vbProperCase) HTH RDH
P Pat Hartman Super Moderator Staff member Local time Today, 13:08 Joined Feb 19, 2002 Messages 48,016 Jun 4, 2000 #3 If you use this function in a query, you need to use the vb constant value rather than its name. StrConv([yourField],3)
If you use this function in a query, you need to use the vb constant value rather than its name. StrConv([yourField],3)