Jan 5, 2004 #1 sborny Technical User Joined Jun 29, 2001 Messages 157 Location GB Hi All, Is there a way to change any captial letters in a string to lower case. Thanks. S. Everything has an answer, it's just knowing the right question to ask. !!!!
Hi All, Is there a way to change any captial letters in a string to lower case. Thanks. S. Everything has an answer, it's just knowing the right question to ask. !!!!
Jan 5, 2004 #2 Swi Programmer Joined Feb 4, 2002 Messages 1,981 Location US Lcase("TeSt" Swi Upvote 0 Downvote
Jan 5, 2004 #3 sciophyte Programmer Joined Dec 8, 2003 Messages 66 Location CA and just for reference, UCase("TeSt" for uppercase conversion Upvote 0 Downvote
Jan 5, 2004 2 #4 strongm MIS Joined May 24, 2001 Messages 20,266 Location GB There's a third one for 'proper' case conversion (uppercases first letter of word, lowercases remainder), but it's only available if you use StrConv: StrConv("yourString", vbProperCase) Upvote 0 Downvote
There's a third one for 'proper' case conversion (uppercases first letter of word, lowercases remainder), but it's only available if you use StrConv: StrConv("yourString", vbProperCase)
Jan 5, 2004 #5 ZOR Technical User Joined Jan 30, 2002 Messages 2,963 Location GB Thankyou strongm, that will do nicely. Have a star. Just when I needed it. Regards Upvote 0 Downvote