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?
- 2 years ago
Hi,
anothere solution
List.Max(List.Difference([Your_Column], {List.Max([Your_Column])}))Stéphane