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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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 

 

 



Microsoft MVP



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.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question



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 

 

 



Microsoft MVP



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.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question



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 

 

 



Microsoft MVP



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.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question



Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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