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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jaryszek
Post Patron
Post Patron

[DAX] Why i can not use filter within summarize table?

hi,

i am doing 25 days challange from curbal and i am on day 15:
https://curbal.com/25-days-of-dax-fridays-challenge 

and i have issues with code provided in solution which is:

jaryszek_0-1657891165001.png

 

for me it is throwing error:

jaryszek_1-1657891194613.png

 

it is only working with Products[ProductID].

Can anybody explain why in simple plain english?
Please help,
Best,
Jacek

 

 



1 ACCEPTED SOLUTION
johnt75
Super User
Super User

In the QPurchases variable, the FILTER function is not being applied to the Orders table, it is being applied to the temporary table created by SUMMARIZE. If you try to filter on [Product ID] rather than Orders[Product ID] then that should work, as it is filtering the column from the temporary table.

Another way to do it would be to move the FILTER call inside the SUMMARIZE, so

SUMMARIZE( FILTER(Orders, Orders[Product ID] = 11 ), rest of SUMMARIZE statement

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

In the QPurchases variable, the FILTER function is not being applied to the Orders table, it is being applied to the temporary table created by SUMMARIZE. If you try to filter on [Product ID] rather than Orders[Product ID] then that should work, as it is filtering the column from the temporary table.

Another way to do it would be to move the FILTER call inside the SUMMARIZE, so

SUMMARIZE( FILTER(Orders, Orders[Product ID] = 11 ), rest of SUMMARIZE statement

thank you very much @johnt75 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.