ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Copy first few letters from a cell (https://www.excelbanter.com/excel-worksheet-functions/173526-copy-first-few-letters-cell.html)

mat

Copy first few letters from a cell
 
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

JP[_4_]

Copy first few letters from a cell
 
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

On Jan 17, 4:44*pm, Mat wrote:
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



FSt1

Copy first few letters from a cell
 
hi
how about a formula.
=left(A1,5)
copy down. if you want hard letters, copy formula column and paste as values.

Regards
FSt1

"Mat" wrote:

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


T. Valko

Copy first few letters from a cell
 
=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)


--
Biff
Microsoft Excel MVP


"Mat" wrote in message
...
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




Don Guillett

Copy first few letters from a cell
 
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)

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Mat" wrote in message
...
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



Rick Rothstein \(MVP - VB\)

Copy first few letters from a cell
 
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


"Don Guillett" wrote in message
...
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)

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Mat" wrote in message
...
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




mat

Copy first few letters from a cell
 
Dear Fst1,

Thanks. That was simple.

Regards

Mat

"FSt1" wrote:

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

Regards
FSt1

"Mat" wrote:

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


mat

Copy first few letters from a cell
 
Thank you

"FSt1" wrote:

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

Regards
FSt1

"Mat" wrote:

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


Don Guillett

Copy first few letters from a cell
 
Rick, It appears that the OP wants to do it the hard way.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Rick Rothstein (MVP - VB)" wrote in
message ...
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


"Don Guillett" wrote in message
...
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)

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Mat" wrote in message
...
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





Rick Rothstein \(MVP - VB\)

Copy first few letters from a cell
 
Yes, it does seem so.

Rick


"Don Guillett" wrote in message
...
Rick, It appears that the OP wants to do it the hard way.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Rick Rothstein (MVP - VB)" wrote in
message ...
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


"Don Guillett" wrote in message
...
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)

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Mat" wrote in message
...
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






All times are GMT +1. The time now is 04:49 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com