Thread
:
Getting the first 3 digits out of 6 digit cells?
View Single Post
#
2
Biff
Posts: n/a
=LEFT(A1,3)*1
Or, to make it a little more robust:
=IF(LEN(A1)<3,"",LEFT(A1,3)*1)
Biff
"Darla" wrote in message
...
I have a 6 digit number in a cell. I want the first 3 digits of it to
appear
in another cell. What is the formula?
Reply With Quote