Omitting right part of text string

K

klysell

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!
 
R

Rick Rothstein \(MVP - VB\)

Give this a try (assuming your text is in A1)...

=LEFT(A1,FIND("(",A1&"(")-1)

Rick
 
D

Don Guillett

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
 
D

Don Guillett

a tiny bit shorter.
=LEFT(a1,FIND("(",a1)-1)
=LEFT(A1,FIND("(",A1&"(")-1)

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(e-mail address removed)
message Give this a try (assuming your text is in A1)...

=LEFT(A1,FIND("(",A1&"(")-1)

Rick
 
R

Rick Rothstein \(MVP - VB\)

I tacked on the "(" to protect the formula from the #VALUE! error if the
cell contents were empty or if the text did not contain a "(" character in
it. I was sort of anticipating the OP would be copying the formula down.

Rick
 

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