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
bkwohls
Helper I
Helper I

Components Of Costs - Sum selected pieces

My company makes products. For each product we record 3 main components for cost. Burden, Labor, Mtl. I want to analyze our product cost over time BUT also want to be able to use a slicer to select which of teh components are calcualting. For Eaxmple I amy only want to look at MTL over time, or if I select mtl and labor I can also see that. I tried to use the Selected Value but is breaks when more than one item is selected. Thank you in advance

 

This was my attempt:

Roll Up Cost =
Var Burdn = if(SELECTEDVALUE('Cost Type'[Cost Component],blank())="Burden",AAA_Measures[Average Burden],0)
Var Lbor = if(SELECTEDVALUE('Cost Type'[Cost Component],blank())="Labor",AAA_Measures[Average Labor],0)
Var Mtl = if(SELECTEDVALUE('Cost Type'[Cost Component],blank())="Material",AAA_Measures[Average Mtl],0)
Return
Burdn+Lbor+Mtl
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@bkwohls , Try like

Roll Up Cost =
Var Burdn = if(not(isblank(Countx(filter('Cost Type', 'Cost Type'[Cost Component]= "Burden"), 'Cost Type'[Cost Component]))) ,AAA_Measures[Average Burden],0)
Var Lbor = if(not(isblank(Countx(filter('Cost Type', 'Cost Type'[Cost Component]= "Labor"), 'Cost Type'[Cost Component]))) ,AAA_Measures[Average Labor],0)
Var Mtl = if(not(isblank(Countx(filter('Cost Type', 'Cost Type'[Cost Component]= "Material"), 'Cost Type'[Cost Component]))) ,AAA_Measures[Average Mtl],0)
Return
Burdn+Lbor+Mtl

View solution in original post

2 REPLIES 2
bkwohls
Helper I
Helper I

100 % eaxactly what I needed thank you!

 

amitchandak
Super User
Super User

@bkwohls , Try like

Roll Up Cost =
Var Burdn = if(not(isblank(Countx(filter('Cost Type', 'Cost Type'[Cost Component]= "Burden"), 'Cost Type'[Cost Component]))) ,AAA_Measures[Average Burden],0)
Var Lbor = if(not(isblank(Countx(filter('Cost Type', 'Cost Type'[Cost Component]= "Labor"), 'Cost Type'[Cost Component]))) ,AAA_Measures[Average Labor],0)
Var Mtl = if(not(isblank(Countx(filter('Cost Type', 'Cost Type'[Cost Component]= "Material"), 'Cost Type'[Cost Component]))) ,AAA_Measures[Average Mtl],0)
Return
Burdn+Lbor+Mtl

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.