What's the equivalent to this in VBA?
=Lower("TRUE")
Copy -> paste_special -> Values
The above gives me the lowercase value "true" in the cell without a leading apostrophe.
I tried a bunch of things in VBA including:
Range("A1").Value = LCase("TRUE")
But each time the result ends up uppercase. Adding an apostrophe is not a solution for me as I the 3rd party tool that reads my resulting excel file does not like uppercase and it does not like the leading apostrophe.
Thanks!
=Lower("TRUE")
Copy -> paste_special -> Values
The above gives me the lowercase value "true" in the cell without a leading apostrophe.
I tried a bunch of things in VBA including:
Range("A1").Value = LCase("TRUE")
But each time the result ends up uppercase. Adding an apostrophe is not a solution for me as I the 3rd party tool that reads my resulting excel file does not like uppercase and it does not like the leading apostrophe.
Thanks!