K
Ken
Given the following cell data:
A1 100ABC
A2 10BCD
A3 233XVF
A4 6YU
..
Each cell entry begins with one, two or three numbers.
I want to extract the numeric parts of A1, A2, etc. and
place them in B1, B2, etc.
I assume that I would enter into B1 a formula like:
=IF(LEFT(A1,3)="number",LEFT(A1,3),IF(LEFT(A1,2)
="number",LEFT(A1,2),LEFT(A1,1)))
How do I test for "number"?
TIA.
A1 100ABC
A2 10BCD
A3 233XVF
A4 6YU
..
Each cell entry begins with one, two or three numbers.
I want to extract the numeric parts of A1, A2, etc. and
place them in B1, B2, etc.
I assume that I would enter into B1 a formula like:
=IF(LEFT(A1,3)="number",LEFT(A1,3),IF(LEFT(A1,2)
="number",LEFT(A1,2),LEFT(A1,1)))
How do I test for "number"?
TIA.