Forum Discussion

benjamin_sasin's avatar
benjamin_sasin
Resolver I
6 years ago
Solved

Max of Column in Power Query

I'm trying to get the maximum value from colum in a table on Power Query (not Power BI) and I just can't seem to be able to do it:   List.Max([column]) won't work. List.Max({[column]}) returns th...
  • camargos88's avatar
    6 years ago

    Hi benjamin_sasin ,

     

    What type of data are you trying to get the max value ?

     

    Sometimes you have to refer to the table before, like:

     

    List.Max(PreviousStepName[Column])

     

    Ricardo