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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

Power Query: How to filter in a List.Max function to get maximum from only part of the data

Hello, I would like to filter the list of values before I get the max value.

 

I have 2 tables:

  • date dimension with months of current Fiscal Year
  • fact / transaction table with actual results and forecasts

picture.png

In Power Query I would like to add a custom column to the date dimension table with the maximum Month available for "Actual" Scenario from the fact table.

This syntax:  List.Max(#"Actuals Consolidation"[Month])

allowed me to add the maximum Month of the whole fact table table ~ 10/01/2023.

How can I add the filtering to the "Actual" Scenario, please?

When I try something like this:

= Table.AddColumn(#"Added Custom", "Custom.1", each List.Max(Table.SelectRows(#"Actuals Consolidation"[Month], each [Scenario] = "Actual")))

I get error that list cannot be converted to a table.

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

I would suggest to do that in Power BI DAX instead. List.Max is a potentially very expensive operation that may break folding.

 

if you must - specify the column name at the end.

 

= Table.AddColumn(#"Added Custom", "Custom.1", each List.Max(Table.SelectRows(#"Actuals Consolidation", each [Scenario] = "Actual")[Month]))

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

I would suggest to do that in Power BI DAX instead. List.Max is a potentially very expensive operation that may break folding.

 

if you must - specify the column name at the end.

 

= Table.AddColumn(#"Added Custom", "Custom.1", each List.Max(Table.SelectRows(#"Actuals Consolidation", each [Scenario] = "Actual")[Month]))

Helpful resources

Announcements
Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors