Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Extract Using Any Non-Number As Delimiter

Hi. I am trying to extract numbers that only exist before any characters occur in the string. Once ANY characters start, that will be the end of the number. The trick here is that somtimes there are ...
  • Anonymous's avatar
    Anonymous
    5 years ago
    = Table.AddColumn(#"Modificato tipo", "Personalizzato", each try Number.From(Splitter.SplitTextByCharacterTransition({"0".."9"}, (c) => c <"0" or c>"9")([Source]){0}) otherwise 1)
  • CNENFRNL's avatar
    CNENFRNL
    5 years ago

    Anonymous , you need to add a new column this way in your senario,