G Guest Sep 14, 2005 #1 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?
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?
B Biff Sep 14, 2005 #2 =LEFT(A1,3)*1 Or, to make it a little more robust: =IF(LEN(A1)<3,"",LEFT(A1,3)*1) Biff
P Paul Sheppard Sep 14, 2005 #4 Darla said: 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? Click to expand... Hi Darla Try > =MID(A1,1,LEN(A1)-3) in cell A2 if 6 digit no in A1, change cell references to suit
Darla said: 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? Click to expand... Hi Darla Try > =MID(A1,1,LEN(A1)-3) in cell A2 if 6 digit no in A1, change cell references to suit
D Dave Peterson Sep 15, 2005 #5 One more: =INT(A1/1000) 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? Click to expand...
One more: =INT(A1/1000) 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? Click to expand...