View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Frenchie[_2_] Frenchie[_2_] is offline
external usenet poster
 
Posts: 7
Default Help a Newby Please!!

Thanks

"Don Guillett" wrote in message ...
This should do it
Sub deletetext()
For Each c In Selection
c.Value = Trim(Right(c, Len(c) - InStr(c, "*")))
Next
End Sub
--
Don Guillett
SalesAid Software

"Frenchie" wrote in message
om...
Hi,

This way be very simple, but I need a code that will delete the part
of a text in a cell. For example I have a cell that contains the
following "ZZ112: *:XYZ " I want to get ride of the anything before
the star and any spaces after the Z. I remember something about
cutting up strings back from my serious VB days, but I can't seem to
remember how to do it.

Thanks a lot