formula that strips the first letter of the first name in a cell

C

Cluce

I dont know if this can be done but how can I do this....
let's say
in
cell A1 I have the value "John"
cell B1 I have the value "Smith"

Can I write a formula to create this in cell C1 "JSmith"
I guess it would be something like this = ????? + B1
 
R

Ron Rosenfeld

I dont know if this can be done but how can I do this....
let's say
in
cell A1 I have the value "John"
cell B1 I have the value "Smith"

Can I write a formula to create this in cell C1 "JSmith"
I guess it would be something like this = ????? + B1

=LEFT(A1)&B1
--ron
 
P

Pete_UK

Try this:

=LEFT(A1,1) & B1

or this if you want a space between the initial and the surname:

=LEFT(A1,1) & " " & B1

Hope this helps.

Pete
 
M

Mike H

Hi,

The & symbol means concatenate and while MID does work i would still
recommend LEFT for removing the leftmost character.

Mike
 

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