With Excel VBA...
Can you use a method such as Split to split a variable into an array...
Then the array would look like this...
Temp2(0) = "I"
Temp2(1) = "Wanna"
Temp2(2) = "Be"
Temp2(3) = "An"
Temp2(4) = "Array"
I am assuming VBA does not support Split like VB does...(since It gives me an error)
Any Idea or Suggestions?
Or do I gotta do this MANUALLY :-( ??? Sometimes... the BASIC things in life are the best...
or at least the most fun ;-)
-Josh Stribling
Can you use a method such as Split to split a variable into an array...
Code:
Dim Temp as String, Temp2() as String
Temp = "I|Wanna|Be|An|Array"
Temp2 = Split(Temp,"|")
Then the array would look like this...
Temp2(0) = "I"
Temp2(1) = "Wanna"
Temp2(2) = "Be"
Temp2(3) = "An"
Temp2(4) = "Array"
I am assuming VBA does not support Split like VB does...(since It gives me an error)
Any Idea or Suggestions?
Or do I gotta do this MANUALLY :-( ??? Sometimes... the BASIC things in life are the best...

or at least the most fun ;-)
-Josh Stribling