Using your posted examples and assuming no text will be longer than 10 characters
These formulas, copied down, return the individual segments:
Left digits
B1: =LEFT(A1,LOOKUP(10^10,INDEX(--LEFT(A1,{1,2,3,4,5,6,7,8,9,10}),0),{1,2,3,4,5,6,7,8,9,10}))
Right digits
D1: =RIGHT(A1,LOOKUP(99^99,--RIGHT($A1,{1,2,3,4,5,6,7,8,9,10}),{1,2,3,4,5,6,7,8,9,10}))
Middle text
C1: =MID(LEFT(A1,LEN(A1)-LEN(D1)),LEN(B1)+1,10)
These are the results:
Data Range
|
A |
B |
C |
D |
1 |
1C105 |
1 |
C |
105 |
2 |
9MP028 |
9 |
MP |
028 |
3 |
25MJR338 |
25 |
MJR |
338 |
4 |
8PV4545 |
8 |
PV |
4545 |
Is that something you can work with?
Bookmarks