markesmith Posted November 22, 2010 Posted November 22, 2010 Hi, I'm using the following formula to generate user names in Excel: =LEFT(A1,100) & B1 Forname in A1 and surname in B1 this is producing JoeBloggs: what I want is JoeB. Any ideas how I can amend the formula so it extracts only the first letter of the surname? Thanks
clareq Posted November 22, 2010 Posted November 22, 2010 =A1&left(B1,1) Currently your formula is producing the first 100 leftmost characters in A1 and all of B1. The formula above will give all of A1 and the leftmost character in B1 1
Devontechie Posted November 22, 2010 Posted November 22, 2010 try this.... =CONCATENATE(A1,LEFT(B1,1)) 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now