Forum Discussion

AndrewJames's avatar
AndrewJames
Icon for Microsoft Employee rankMicrosoft Employee
6 years ago
Solved

Extract the highest value from a cell in a column

Hi Team,  I have a column with multiple values seperated by commas. I would like to create a new column that has the highest value. Any help? Below is the sample image.                ...
  • tex628's avatar
    6 years ago

    Hi! 

    Use replace value to remove the spaces between the numbers and then add this custom column:

    List.Max(List.Transform(Text.Split([Column1],","), each Number.FromText(_)))


    Br,
    J