Removing part of a cell

C

Chad Portman

I have a list of names in column A the names are entered in this format: last
name, first name(emp id)

The emp id is always a 6 digit number. I want to copy the names only from
column A to column B thereby leaving off the emp id.

Any ideas?
 
T

T. Valko

Try this:

A1 = name, first name(123456)

Enter this formula in B1:

=LEFT(A1,LEN(A1)-8)

Copy down as needed.
 

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