How do I specify I only want the 1st character of a string?
I want to get just the "A". How do I do that?Code:strArt = "Art"
Thanks.
Printable View
How do I specify I only want the 1st character of a string?
I want to get just the "A". How do I do that?Code:strArt = "Art"
Thanks.
msgbox left(strArt ,1)
that was it, thanks