Getting the first 3 digits out of 6 digit cells?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
=LEFT(A1,3)*1

Or, to make it a little more robust:

=IF(LEN(A1)<3,"",LEFT(A1,3)*1)

Biff
 
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?

Hi Darla

Try > =MID(A1,1,LEN(A1)-3) in cell A2 if 6 digit no in A1, change cell
references to suit
 
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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top