Split function
Don't think so, you have to do it yourself
ReDim SplitAllChar(1 To Len(myVal))
For i = 1 To Len(myVal)
SplitAllChar(i) = Mid(myVal, i, 1)
Next i
--
HTH
RP
(remove nothere from the email address if mailing direct)
"coco" wrote in message
...
I have a question:
Can I use the "split" function to split one by one, EACH Character of a
what
is contained in a cell.
I mean, can I use something like this?
SplitAllChar= Split(myVal, "")
Thanks
Coco
|