R ramonmiro New member Local time Today, 10:25 Joined Sep 19, 2012 Messages 3 Nov 2, 2021 #1 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
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
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 17:25 Joined May 7, 2009 Messages 20,174 Nov 2, 2021 #2 can you use StrConv([theField], 3). don't use vbProperCase (constant) use numeric equivalent as in the above for Queries.
can you use StrConv([theField], 3). don't use vbProperCase (constant) use numeric equivalent as in the above for Queries.
J jocph Member Local time Today, 17:25 Joined Sep 12, 2014 Messages 61 Nov 4, 2021 #3 Confirmed working.