Forum Discussion
Jebilaya
Helper III
3 years agoList.Max with date format not working
I'm trying to filter a table in power query so that it only shows results from the max date within the report date column but my List. Max doesn't work as can't be converted to list.
I've also tried using change type but then get a module reference error
Help!
try using lower case c in both places ie., #"Removed columns" . Make sure the step name is identical to what you are referencing
3 Replies
- jgordon11
Resolver II
= Table.SelectRows(#"Removed Columns", let max = List.Max(#"Removed Columns"[Report Date]) in each [Report Date] = max)
- Jebilaya
Helper III
- jgordon11
Resolver II
try using lower case c in both places ie., #"Removed columns" . Make sure the step name is identical to what you are referencing