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.
Hi @ScottBrown ,
List.Min(
Table.SelectRows(
#"Changed Type",
each
[Status] = "Open
)[Year]]
)
Regards
KT