View Single Post
  #2   Report Post  
Dave O
 
Posts: n/a
Default In excel is there a way to pick out certain characters in a cell?

You can use the MID() function, comme ca:
=MID(A1,1,1)
=MID(A1,2,1)
etc. You could also use RIGHT() and LEFT() for the columns on the
extreme ends, if you like.