serge
Well-known Member
- Joined
- Oct 8, 2008
- Messages
- 1,444
- Office Version
- 2007
- Platform
- Windows
Hello, I'm looking for formulas that will separate a 3 or 4 digits number into 3 cell, like the example here if I have the number 6104, the 6 would be in the 1st cell A2 the 10 in B2 and 4 in C2 but the problem is that with my data I get sometime 3 digits number or 4 digits number so I don't get the right return in B2 with this formula :
A2 =MID(TEXT(A1,"000"),1,1)+0
B2 =MID(TEXT(A1,"000"),2,2)+0
C2 =MID(TEXT(A1,"000"),3,2)+0
A2 and C2 are Ok but B2 I have a problem because of the 2 centered digits, could this be solve ? Thank you.
A2 =MID(TEXT(A1,"000"),1,1)+0
B2 =MID(TEXT(A1,"000"),2,2)+0
C2 =MID(TEXT(A1,"000"),3,2)+0
A2 and C2 are Ok but B2 I have a problem because of the 2 centered digits, could this be solve ? Thank you.