Forum Discussion
RookiePBI2019
7 years agoRegular Visitor
Sum average by Date
Hi all, I would need some help with a specific DAX formula that it is getting me crazy. I need the sum of average by date and WH of the following table: Date WH Total Lines 13/05/201...
- 7 years ago
RookiePBI2019 here is the measure for you
Sum of Avg by Date and WH = SUMX( SUMMARIZE( Table1, Table1[Date], Table1[WH] ), CALCULATE( AVERAGE( Table1[Total Lines] ) ) )
parry2k
Super User
7 years agoRookiePBI2019 here is the measure for you
Sum of Avg by Date and WH = SUMX( SUMMARIZE( Table1, Table1[Date], Table1[WH] ), CALCULATE( AVERAGE( Table1[Total Lines] ) ) )
RookiePBI2019
7 years agoRegular Visitor
Thank you so much! It works perfectly!