Splitting letters from words in two different cells
Hello,
I have two cells, "2015" and "3Q'15"; I'm wondering if there is a function that I could paste into another cell that would get me "20153" from these two cells i.e. adding the first number of the second cell to the first cell.
I would really appreciate your help, thank you!
C
Solution
Assume:
A1 has 2015
and
B1 has 3Q'15
Now in cell C1 enter this formula:
=A1 & Left(B1,1)
Hope this helps
Thank you Jon!
Thanks a lot Jon, saved me. I also found that using CONCATENATE(A1, LEFT(B1)) gets the same result too.
.
.