Proper Function

  • Thread starter Thread starter DW
  • Start date Start date
D

DW

Hello - I am trying to use Proper Function in Query. I
have used this function in the past with a problem, but
everytime I try to use the following Proper([Last_Name]).
I get the following error message "Undefined
Function 'Proper' in expression. Does anyone know why I am
getting this message.
Thanks in Advance
Dw
 
Access does not have a Proper function. Try using the StrConv() function
in your query with the numeric argument for vbProperCase:

ProperLastName: StrConv([Last_Name], 3)

hth,
 
Back
Top