Forum Discussion
ScottBrown
3 years agoHelper II
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.
- 3 years ago
Hi ScottBrown ,
List.Min( Table.SelectRows( #"Changed Type", each [Status] = "Open )[Year]] )Regards
KT
KT_Bsmart2gethe
3 years agoImpactful Individual
Hi ScottBrown ,
List.Min(
Table.SelectRows(
#"Changed Type",
each
[Status] = "Open
)[Year]]
)
Regards
KT
- ScottBrown3 years agoHelper II
Thanks KT_Bsmart2gethe - this helped a lot.