Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
adraus
Frequent Visitor

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("Filtered Rows", each [PymtDatePeriodNum] = List.Max("Filtered Rows"[PymtDatePeriodNum]))

 

(Error:  "We cannot convert the value "Filtered Rows" to type Table.")

Ideas??

 

adraus_0-1659371610050.png

 

 

 

 

 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Make it

#"Filtered Rows"

Hence, following will work

= Table.SelectRows(#"Filtered Rows", each [PymtDatePeriodNum] = List.Max(#"Filtered Rows"[PymtDatePeriodNum]))

View solution in original post

1 REPLY 1
Vijay_A_Verma
Super User
Super User

Make it

#"Filtered Rows"

Hence, following will work

= Table.SelectRows(#"Filtered Rows", each [PymtDatePeriodNum] = List.Max(#"Filtered Rows"[PymtDatePeriodNum]))

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors