Parse for numbers only

akephart

New member
Joined
Oct 12, 2016
Messages
12
Reaction score
0
Points
1
Location
Nanaimo
Excel Version(s)
365
Is there anyway to parse for numbers? I recently had a file where a column with street addresses were one long concatenated text. I was looking for a simple way to separate the numbers from the other characters.
 
Some examples are below. I need to put a space between the numbers and the name of the Streets/Avenues. It would be nice if there was a parse command to separate the numbers.

123HecateStreet
456FirstAvenue
8555MainStreet
 
You should add a step like this below ( this is one of possible ways)
Code:
Transform = Table.TransformColumns(YourPreviousStep, {{"NameOfYourColumnWithData", each Text.Combine(Splitter.SplitTextByPositions({0,Text.PositionOfAny(_, {"A".."Z"})}) (_), " ")}} )

Regards
 
Back
Top