I am tring to run a query to change the data in a field in a table from upper case to proper case and have been unsuccessful. In SQL view the update query looks like this -
UPDATE Prospects SET Prospects.LastName = StrConv([LastName],3);
When I try to run the query, I receive the following message:
"Undefined function "StrConv'in expression"
What am I doing wrong?
[sig][/sig]
UPDATE Prospects SET Prospects.LastName = StrConv([LastName],3);
When I try to run the query, I receive the following message:
"Undefined function "StrConv'in expression"
What am I doing wrong?
[sig][/sig]