Equivalent of LCase and UCase in queries

ramonmiro

New member
Local time
Today, 10:25
Joined
Sep 19, 2012
Messages
3
Hi, I'm looking for the equivalent function of vbProperCase, than can be used in queries, like LCase and UCase.
I modules we can do it using InStr, Mid and , Right functions, but in queries this would be long

Thanks
 
can you use StrConv([theField], 3).
don't use vbProperCase (constant) use numeric equivalent
as in the above for Queries.
 
1636005924285.png


Confirmed working.
 

Users who are viewing this thread

Back
Top Bottom