View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default Delete Certain Text From Cells

If, as your two examples show, your quanity and units are always the last
text in the cell **AND** if they are always connected together without a
space character between them, then try this formula...

=TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99))

--
Rick (MVP - Excel)


"Adding Text Without Deleting"
om wrote in message
...
I have Excel 2007 and I have over 5000 products. Each product has different
text. For example one cell says (spray 2.5oz) the next cell says (edu
spray
3.3oz). Picture over 5000 cells with this kind of data. How do I delete
all
of the text except for the (2.5oz or the 3.3oz)?