Thread
:
In excel is there a way to pick out certain characters in a cell?
View Single Post
#
2
Dave O
Posts: n/a
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.
Reply With Quote