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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
pbakaric
Frequent Visitor

DAX Help - Combine Groupby and Filter Functions

I need to FILTER my SUMX/GROUPBY function. I would like to combine these two DAX statements, however, I'm struggling to do so, please let me know if you have any suggestions:

 

Statement 1: 

SUMX(
GROUPBY('Demand Line Relation',

'Demand Line Relation'[Line],'Demand Line Relation'[Program],'Demand Line Relation'[Factory CapacityShifts],'Demand Line Relation'[FactoryCapacityHrs Per Shift]),
'Demand Line Relation'[Factory CapacityShifts]*Demand Line Relation'[FactoryCapacityHrs Per Shift]

)

Statement 2:

FILTER(
'Demand Line Relation',
'Demand Line Relation'[Factory]="HEC"

)

 

Preston

1 ACCEPTED SOLUTION
pbakaric
Frequent Visitor

I should have spent 5 more minutes on this, here is what I came up with:

 

SUMX(
FILTER(
GROUPBY(
'Demand Line Relation',
'Demand Line Relation'[Line],'Demand Line Relation'[Program],'Demand Line Relation'[Factory CapacityShifts],'Demand Line Relation'[FactoryCapacityHrs Per Shift],'Demand Line Relation'[Factory]
),
'Demand Line Relation'[Factory]="HEC"
),
'Demand Line Relation'[Factory CapacityShifts]*'Demand Line Relation'[FactoryCapacityHrs Per Shift]
)

 

View solution in original post

1 REPLY 1
pbakaric
Frequent Visitor

I should have spent 5 more minutes on this, here is what I came up with:

 

SUMX(
FILTER(
GROUPBY(
'Demand Line Relation',
'Demand Line Relation'[Line],'Demand Line Relation'[Program],'Demand Line Relation'[Factory CapacityShifts],'Demand Line Relation'[FactoryCapacityHrs Per Shift],'Demand Line Relation'[Factory]
),
'Demand Line Relation'[Factory]="HEC"
),
'Demand Line Relation'[Factory CapacityShifts]*'Demand Line Relation'[FactoryCapacityHrs Per Shift]
)

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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