Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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("Filtered Rows", each [PymtDatePeriodNum] = List.Max("Filtered Rows"[PymtDatePeriodNum]))
(Error: "We cannot convert the value "Filtered Rows" to type Table.")
Ideas??
Solved! Go to Solution.
Make it
#"Filtered Rows"
Hence, following will work
= Table.SelectRows(#"Filtered Rows", each [PymtDatePeriodNum] = List.Max(#"Filtered Rows"[PymtDatePeriodNum]))
Make it
#"Filtered Rows"
Hence, following will work
= Table.SelectRows(#"Filtered Rows", each [PymtDatePeriodNum] = List.Max(#"Filtered Rows"[PymtDatePeriodNum]))