Select the range of cells in a column on which you want to perform the split action. Click 'Data'. From 'Data Tools', Click 'Convert Text to Table'. Click 'Next'. Select the appropriate delimiter check box. Click 'Next'. From 'Column data format', select appropriate option. Click 'Finish'.
The easiest way is to use text to columns (as mentioned by pnuts) but here's a couple of other options to explore:
VBA:
Formula:
=LEFT(A1,SEARCH(".",A1)-1) Will return "test"
=MID(A1,SEARCH(".",A1)+1,LEN(A1)) Will return "test1"
Select the range of cells in a column on which you want to perform the split action. Click 'Data'. From 'Data Tools', Click 'Convert Text to Table'. Click 'Next'. Select the appropriate delimiter check box. Click 'Next'. From 'Column data format', select appropriate option. Click 'Finish'.
Assuming the the string is in
A1
, then paste this formula toB1
:You can copy the formula in
B1
toC1
,D1
,E1
,... to get 2nd, 3rd,... word.