Forum Discussion
sw123
1 year agoHelper III
Help with AVERAGEX
Hi, I am trying to calculate acerage kg per day in Power BI, but can't get it to work. This is the formula I am trying: Average / day = AVERAGEX(VALUES(Dates[Date]), [KG]) Where Date come...
- 1 year ago
Try
Average / day = AVERAGEX ( VALUES ( Dates[Date] ), CALCULATE ( SUM ( Production[KG] ) ) )