Forum Discussion
Jan91
2 years agoRegular Visitor
Problem with SUMMARIZE
Hey there, i hope i could get any help here 🙂 There are a table with different production data. Each production could be identified by an unique OrderNr. Because there are a lot of bookings for...
bhanu_gautam
2 years agoSuper User
Jan91 Try updating measure as
SumTable =
SUMMARIZE(
'ProductionData',
'ProductionData'[OrderNr],
"TotalProductionTime", SUMX(CURRENTGROUP(), 'ProductionData'[productionTime])
)
- Jan912 years agoRegular Visitor
bhanu_gautam thank you for your quick answer!
I tried this solution but it doesn´t worked unfortuantely. But it inspired me for new approaches!
Instead i solved this problem by adding calculated columns to SumTable. Now it works as i expeted.
Thank you very much!
- bhanu_gautam2 years agoSuper User
Jan91 , That's awesome