if a1 is bob, b1 is james, c1 is ricky, and d1 is a ssn#(123-45-6789), how do i combine the first charactersos a1, b1, and c1 and the last four of the ssn so that it says bjr6789?
views:
25answers:
1
A:
=LEFT(A1,1)&LEFT(B1,1)&LEFT(C1,1)&RIGHT(D1,4)
Edit: Changed to use row1.
Rulmeq
2010-05-31 15:14:57