A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
=a1&"_"&left(b1,1)
Jim
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have am trying to take a First Name (A1), insert a _, First letter of last name (B2). I have this working
=left(a1,1) & "." & b1 which takes John Smith and creates J_Smith but I need the opposite.
I am trying to get John_S
I tried this but it didn't work:
=left a1, & "." & (b1,1) but this gives me an error
What am I doing wrong?
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
=a1&"_"&left(b1,1)
Jim
Answer accepted by question author
Thank you everyone! That did the trick.
Use below function -
=A1&"."&LEFT(B1,1)
(Please see whether you want a "_" in place of "."