Forum Discussion
Anonymous
4 years agoNot applicable
Select rows with max pay period
Trying to select the rows with the greatest value in Pay Period column. I want all deductions for the latest period in this d365 table. Getting an error on this statement: = Table.SelectRows("F...
- 4 years ago
Make it
#"Filtered Rows"
Hence, following will work
= Table.SelectRows(#"Filtered Rows", each [PymtDatePeriodNum] = List.Max(#"Filtered Rows"[PymtDatePeriodNum]))
Vijay_A_Verma
4 years agoMost Valuable Professional
Make it
#"Filtered Rows"
Hence, following will work
= Table.SelectRows(#"Filtered Rows", each [PymtDatePeriodNum] = List.Max(#"Filtered Rows"[PymtDatePeriodNum]))