Thread: data splitting
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Phil Hibbs Phil Hibbs is offline
external usenet poster
 
Posts: 100
Default data splitting

On Apr 20, 10:18*am, ernietan
wrote:
I have a column of data which i want to split into 2 other columns.
...
But I don't know what formuale to put in cell C1.


Try the mid function, something like [=mid(A1,FIND(",",A1)+1,999)] - I
think you have to specify an upper limit for the length which I have
put as 999 here. If there might not be a comma, you need an if around
it to check the find.

Phil Hibbs.