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
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
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.