Forum Discussion
TimmK
2 years agoHelper IV
Group By Second Laste Date
In Power Query I want to use Group By, but not get the rows with MAX, but second last MAX value.
How can I accomplish this?
TimmK (upd) make your list distinct, sort descending order and take 2nd item from the list as list_name{1}?
Hi,
anothere solution
List.Max(List.Difference([Your_Column], {List.Max([Your_Column])}))Stéphane