Forum Discussion
Anonymous
3 years agoNot applicable
Second Last Value threw columns
Hello, I have a list from which I need to return the last value of a column. This works with the following formula. List.Last(List.RemoveItems(Record.ToList(_),{""})) Now I wonder if it is also po...
- 3 years ago
Hi Anonymous,
Yes, you can. But in a slightly differnt fashion, e.g. :
let Source = {1..9}, OneBeforeLast = Source{List.Count(Source)-2} in OneBeforeLastCheers,
John
jbwtp
3 years agoMemorable Member
Hi Anonymous,
Yes, you can. But in a slightly differnt fashion, e.g. :
let
Source = {1..9},
OneBeforeLast = Source{List.Count(Source)-2}
in
OneBeforeLastCheers,
John