Copy first few letters from a cell

  • Thread starter Thread starter Mat
  • Start date Start date
M

Mat

Dear mate,

I have 6000 client names and some are duplicates. I need to copy just the
first 5 letters of each client from the cell and place in the next cell. This
will help me to sum up all the ABCDE revenue as they are all same client with
different names with the first 5 letters are common.
Hope I was able to explain my issue,

For example

ABCDE Ltd
ABCDE co.
ABCDE inc
ABCDE ltee

Regards
Mat
 
Let's say the first client name was in A1, put this formula in B1 and
fill down as needed.

=LEFT(A1,5)

Don't forget to Copy/Paste Values to get the data hardcoded into your
worksheet.

HTH,
JP
 
hi
how about a formula.
=left(A1,5)
copy down. if you want hard letters, copy formula column and paste as values.

Regards
FSt1
 
=LEFT(A1,5)

Will return the first 5 characters from cell A1.

However, if you want to get a sum based on the first 5 characters you really
don't need to use a helper column.
ABCDE Ltd...50
ABCDE co....10
ABCDE inc....20
ABCDE ltee...10

Try one of these:

=SUMIF(A1:A10,"*abcde*",B1:B10)

Or

=SUMPRODUCT(--(LEFT(A1:A10,5)="abcde"),B1:B10)
 
No need to do that. Use SUMPRODUCT where col A is the co name and col B is
the numbers to be summed.


=sumproduct((left(a2:a22,5)="ABCDE")*B2:B22)
 
You can also do it with a SUMIF function call...

=SUMIF(A1:A10,"ABCDE*",B1:B10)

(Mat... note the asterisk after the 5 character string you want to sum for)

Rick
 
Yes, it does seem so.

Rick


Don Guillett said:
Rick, It appears that the OP wants to do it the hard way.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(e-mail address removed)
 

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

Back
Top