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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

How to split up this measure?

Hello Community  -  I need to break apart this measure and effectively look at Standard SKUs and Custom SKUs separately.  

 

= SUMX(FILTER('Flu_Shipped Query',('Flu_Shipped Query'[DateShipped]>DATE(2019,09,01) && 'Flu_Shipped Query'[SKU Types]="Standard SKUs") || 'Flu_Shipped Query'[SKU Types] = "Custom SKUs" = "PSUs" ),[ERP Quantity Shipped2])

I want the sum of each (erp quantity) independently, with the ability to set different a different date for each.  
 
My thinking was to split them up into VAR statements...one for standard, and one for custom.    Then the RETURN value would be the sum of the two variables.   Any guidance how to do this is appreciated.  
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@Anonymous Maybe:

Measure =
  VAR __Standard = SUMX(FILTER('Flu_Shipped Query',('Flu_Shipped Query'[DateShipped]>DATE(2019,09,01) && 'Flu_Shipped Query'[SKU Types]="Standard SKUs")),[ERP Quantity Shipped2])
  VAR __Custom = SUMX(FILTER('Flu_Shipped Query',('Flu_Shipped Query'[DateShipped]>DATE(2019,09,01) && 'Flu_Shipped Query'[SKU Types] = "Custom SKUs" = "PSUs" ),[ERP Quantity Shipped2])
RETURN
  __Standard + __Custom


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@Anonymous Maybe:

Measure =
  VAR __Standard = SUMX(FILTER('Flu_Shipped Query',('Flu_Shipped Query'[DateShipped]>DATE(2019,09,01) && 'Flu_Shipped Query'[SKU Types]="Standard SKUs")),[ERP Quantity Shipped2])
  VAR __Custom = SUMX(FILTER('Flu_Shipped Query',('Flu_Shipped Query'[DateShipped]>DATE(2019,09,01) && 'Flu_Shipped Query'[SKU Types] = "Custom SKUs" = "PSUs" ),[ERP Quantity Shipped2])
RETURN
  __Standard + __Custom


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.