How do I parse the data in a cell

R

Randy

I have an excel workseet with the following type of data:
white-jungle.XL
white-jungle.XXL
jungle-smoke.S
berny blue-smoke.S
berny blue-smoke.M
I need to parse the 'sizes'(everything after the period) and put it another
column.
Any help would be appreciated.
 
D

Dave Peterson

You could use Data|Text to columns
Delimited by a .
If there are no other dots in the cell.
 
F

FSt1

hi
you could use 2 formula to seperate the data into seperate cells.
first part before the period.
=LEFT(A1,FIND(".",A1)-1)
second part after the period.
=MID(A1,FIND(".",A1)+1,999)

each formula would go in a seperate cell from the data.
copy both formulas down as far as needed/
then copy the two fromula and paste special values.
this will turn the fromulas in to hard data. you can then delete the
original data.

Regards
FSt1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top