View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Anand Anand is offline
external usenet poster
 
Posts: 13
Default extracting strings from cell

I have multiple names stored in a cell. I want to extract individual
names out of the cell. Appreciate any help in this regard.

The cell contains "AAA BBB CCC DDD"
I want to extract this into an array:
Names(0) = "AAA"
Names(1) = "BBB"
Names(2) = "CCC"
Names(3) = "DDD"

Thanks,
Anand.