Thread: Split function
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default 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