View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Omitting right part of text string

Sub trimcells()
mc = "G"
lr = Cells(Rows.Count, mc).End(xlUp).Row
For Each c In Range(Cells(2, mc), Cells(lr, mc))
c.Value = Left(c, InStr(c, "(") - 1)
Next c
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"klysell" wrote in message
...
Hi,

I want to omit the right part of a text string that starts with "(" and
ends
in ")" while returning the left part of the text string. I would have a
cell
that contains a name such as "Lysell, Kent". Right after this name a
number
in parenthesis is concatenated. For example, I would need to return only
"Lysell, Kent" from "Lysell, Kent(111)". This number might be 1 to 4
digits
long. Is there a formula that would omit this number in parethesis -
including the parenthesis - while returning just the name?

Thanks in advance!
--
Kent Lysell
Financial Consultant
Ottawa, Ontario
W: 613.948-9557