Jul 1, 2004 #1 JohnAcc Technical User Aug 13, 2003 143 GB Hi all, I can't work out how to change a string variable to uppercase. I know excel has an upper function but vba does not appear to haev one. I have tried the following to no avail: NewString = Upper(Stringvariable) Any ideas ? Rgds, John
Hi all, I can't work out how to change a string variable to uppercase. I know excel has an upper function but vba does not appear to haev one. I have tried the following to no avail: NewString = Upper(Stringvariable) Any ideas ? Rgds, John
Jul 1, 2004 3 #2 Molby Technical User May 15, 2003 520 GB Yes it does, try NewString = UCASE(Stringvariable) Upvote 0 Downvote
Jul 1, 2004 Thread starter #3 JohnAcc Technical User Aug 13, 2003 143 GB Cheers. A Star is on it's way! Upvote 0 Downvote