Forum Discussion
ahmad ali
Apr 16, 2019Brass Contributor
Power bi and Average
Hello,
I've been using Pivot-tables where we can easily choose Average,sum,... (like the image below) - but is there something like that in Power bi - I have values but I don't know how the find or display their AVERAGE in power Bi ... would you please show me how? thank you in advance
6 Replies
- AKP_1Copper Contributor
You will need to use DAX to calculate the average of the entity. For example if the table is called flour and you have sales column,
To calculate the sum,
Sum = (Sum(flour[sales]))
While the average will be
Average = (Average(flour[sales]))- SergeiBaklanDiamond Contributor
AKP_1 , CALCULATE is not necessary here
- AKP_1Copper ContributorReally? I thought it is needed in the PowerBI environment.