Merging part of one field with another field

  • Thread starter Thread starter Jason Ritthaler
  • Start date Start date
J

Jason Ritthaler

I'm trying to merge part of one field with another field.

What I have is 3 columns. Column A = First Name, Column B
= Last Name, Column C = Shortname.

Example. Column A = Jason, Column B = Ritthaler, Column C
= JRitthaler. I'm taking the first letter of column b,
and combining it with Column C.

Is there a way to program this so it will automatically
populate column C?
 
I wrote the wrong thing for the example
.. I'm taking the first letter of column A, and all of
column B and combining them into Column C
 
Hi Jason,

How about a spreadsheet formula like:

IF(AND(LEN(A1)>0,LEN(B1)>0),LEFT(A1,1)&B1,"")

Just copy it down for more cells than you are ever likely to have and you
will see the merged name appearing as soon as you enter data in cols A and
B.

HTH

Peter Beach
 

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