Forum Discussion
AndrewJames
Microsoft Employee
6 years agoExtract 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. ...
- 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
tex628
Community Champion
6 years agoHi!
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
- AndrewJames6 years ago
Microsoft Employee
Thanks J. It worked.