akephart
New member
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.
Transform = Table.TransformColumns(YourPreviousStep, {{"NameOfYourColumnWithData", each Text.Combine(Splitter.SplitTextByPositions({0,Text.PositionOfAny(_, {"A".."Z"})}) (_), " ")}} )