VBA excel?
Asked by
mea05key (
1822)
December 6th, 2008
What does
dim xx as string means??
Observing members:
0
Composing members:
0
5 Answers
You’re declaring a string variable.
do u mind explanning what a string variable means? i am an idiot in vba
Do you understand the concept of variables? If not I can explain. A string is a text variable, as opposed to an integer (3, 9, 142, or 71 for example), or float (1.3, 9.189, or 7.4 for example).
This is a string: “Welcome to Fluther!”
This isn’t a string: 9
This is a string: “Hello!”
Strings are enclosed in quotes. The quotes aren’t part of the string itself.
darn you richie! i would have loved to answer this Q
cheers got it ! thanks alot!
Answer this question
This question is in the General Section. Responses must be helpful and on-topic.