I have one column (9000+ rows) thatcontains data prefixed; Ann or Annn or Annnn chars. e.g. Z12 and/or Z123 and/or Z1234 which I wish to delimit into separate columns
A data example of one cell is; Z12,Z123,Y1234,Y5678,Z1111 up to around 10 occurrences
I havebeen using a formula to delimit text which is working great.
But I havetried to use the same formula to delimit the above challenge (Alpha and numeric chars). Itappears to work fine for the exception of data in my cells that is prefixedZ1000 or Z1024.
Can anyone assist?
Many thanks for your time and assistance.
A data example of one cell is; Z12,Z123,Y1234,Y5678,Z1111 up to around 10 occurrences
I havebeen using a formula to delimit text which is working great.
The formula I have been using is: =TRIM(MID
(SUBSTITUTE(SUBSTITUTE($A1,",","")," ",REPT(" ",100)),1+100*COLUMNS($A:A)-100,100))
But I havetried to use the same formula to delimit the above challenge (Alpha and numeric chars). Itappears to work fine for the exception of data in my cells that is prefixedZ1000 or Z1024.
Can anyone assist?
Many thanks for your time and assistance.