Forum Discussion

ScottBrown's avatar
ScottBrown
Helper II
3 years ago
Solved

Get minimum year when status = Open

I am trying to get the result of 2022 in the calculated column, the minimal year where status = open.   I am getting stuck on this formula.  
  • KT_Bsmart2gethe's avatar
    3 years ago

    Hi ScottBrown ,

     

    List.Min(
        Table.SelectRows(
              #"Changed Type",
              each
                  [Status] = "Open
        )[Year]]
    )

     

    Regards

    KT