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
Anonymous
Not applicable

Summing up the production time for individual products

Hello people,

I need a DAX command that adds up the individual production times of different production steps for different products and outputs them summarized in a column.

Here in the table I have created a small schematic example.

Thanks a lot for your help!

ProductProtuction time (for this step) [h]Total production time
1310
1510
1210
248
248
339
369

 

Greetings Lukas

1 ACCEPTED SOLUTION

Picture1.png

 

https://www.dropbox.com/s/voqap7cojyjpp7h/keluv4.pbix?dl=0 

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Now I have tried to calculate the individual production steps more precisely. Can I add another filter condition to the filter function to get the calculation as shown in the table?

 

If tryed it with:

CALCULATE(SUM('Tabel1'[Protuction time]), FILTER('Tabel1',CONTAINSSTRING('Tabel1'[Production Step],"M2"),ALLEXCEPT('Tabel1', 'Tabel1'[Product]))
 
With this, all M2 production steps get summed up.

 

Thanks for the help so far!

 

ProductProduction StepProtuction time Total production time of M2
1M133
1M143
1M223
1M213
2M134
2M134
2M224
2M224
3M155
3M125
3M245
3M215
Anonymous
Not applicable

CALCULATE(SUM('Tabel'[Production time]), ....

Is it possible to do it with a CALCULATE and SUM comand?

Picture1.png

 

https://www.dropbox.com/s/voqap7cojyjpp7h/keluv4.pbix?dl=0 

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Jihwan_Kim
Super User
Super User

Picture2.png

 

new table =
SUMMARIZECOLUMNS (
Data[Product],
"@total production time", SUM ( Data[Protuction time (for this step) [h]]] )
)

 

 

https://www.dropbox.com/s/voqap7cojyjpp7h/keluv4.pbix?dl=0 

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.

Top Solution Authors