vba - How do you split part of an excel cell into another cell? -
there's list of cells looks [a-z ]* [1-9.]*
. want split numric part adjacent cell. how can this?
for formula approach, try extract numeric part of a1:
=mid(a1,min(find({0,1,2,3,4,5,6,7,8,9},a1&"0123456789")),255)
Comments
Post a Comment