I have two columns in the following structure
A B
1 49 4922039670
I have been able to evaluate =LEN(A1) as 2, =LEFT(B1,2) as 49, and =LEFT(B1,LEN(A1)) as 49. However when I try to evaluate =IF(LEFT(B1,LEN(A1))=A1,TRUE,FALSE) it evaluates FALSE. I have no idea why. I have tried to change both columns A and B to different matching formats but it still just evaluates FALSE.
Not entirely sure what Im doing wrong.
=IF(LEFT(B1,LEN(A1))*1=A1,TRUE,FALSE).