Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

How to find specific data in conditional column

Heya! Apologies for my lack of terminology I'm new to this app - I am having trouble with getting data from a column, Im trying to just get a specific bit of data from a line entry. So for example, t...
  • camargos88's avatar
    6 years ago

    Hi Anonymous ,

     

    You can use it for a custom column:

    Text.Trim(Text.BetweenDelimiters([Column1],"Invoice","for"))

     

     

    This also works:

    Text.Select(Text.Range([Column1], 2, Text.Length([Column1]) - 2), {"0".."9"})

     

    It removes the number followed by dot and select only the numbers.