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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
samc_26
Helper IV
Helper IV

DAX table using SUMMARIZE and multiple filters on columns

Hi all, I'm trying to create a table that groups by two columns and does a count on a third for the values but I also need to filter against some other columns. So far I've managed to put this together which shows me the columns how I want them to appear but only filters the [US] column by the single value "ACKL".

 

I have multiple values which I need the [US] column to filter against but I can't figure out how to write this out... Is it possible to do multiple conditions using these expressions or do I need to change it completely? I would be very grateful if anyone can help me with this, I've spent many hours trying to work it out myself unsuccessfully! Thank you for reading, below is the code 😊

 

Table new =

    SUMMARIZE(

        FILTER('ERP/ECC','ERP/ECC'[US] = "ACKL"),

        'ERP/ECC'[Area], 'ERP/ECC'[Released Week Commencing],

"Total orders", DISTINCTCOUNT('ERP/ECC'[Order]))

1 ACCEPTED SOLUTION
bhanu_gautam
Super User
Super User

@samc_26 , Try using

 

DAX
Table new =
SUMMARIZE(
FILTER(
'ERP/ECC',
'ERP/ECC'[US] IN {"ACKL", "VALUE1", "VALUE2"} // Add your values here
),
'ERP/ECC'[Area],
'ERP/ECC'[Released Week Commencing],
"Total orders", DISTINCTCOUNT('ERP/ECC'[Order])
)




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @samc_26 ,
Has the issue been resolved on your end? If so, please share your solution and mark it as "Accept as Solution." This will assist others in the community who are dealing with similar problems and help them find a solution more quickly.
Thank you.

Anonymous
Not applicable

Hi @samc_26 ,
I wanted to check and see if you had a chance to review our previous message. Please let us know if everything is sorted or if you need any further assistance.
Thank you.

Anonymous
Not applicable

Hi @samc_26 ,
Could you please confirm if the issue has been resolved on your end? If a solution has been found, it would be greatly appreciated if you could share your insights with the community. This would be helpful for other members who may encounter similar issues.
Thank you for your understanding and assistance.

bhanu_gautam
Super User
Super User

@samc_26 , Try using

 

DAX
Table new =
SUMMARIZE(
FILTER(
'ERP/ECC',
'ERP/ECC'[US] IN {"ACKL", "VALUE1", "VALUE2"} // Add your values here
),
'ERP/ECC'[Area],
'ERP/ECC'[Released Week Commencing],
"Total orders", DISTINCTCOUNT('ERP/ECC'[Order])
)




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.