Forum Discussion
PowerBi888
Helper I
7 years agoTotal Sum of Average data
I have data 6 rows Month BudgetAmt SaleAmt Day 01 32 14 1 01 32 15 2 02 ...
- 7 years ago
Hi PowerBi888
You may create a measure like below:
Measure = SUMX ( VALUES ( Table1[Month] ), AVERAGE ( Table1[BudgetAmt] ) )
Regards,
- 7 years ago
Working fine! using this measure , thanks a lot.
Measure =
SUMX ( VALUES ( Table1[Month] ), AVERAGE ( Table1[BudgetAmt] ) )
v-cherch-msft
Microsoft Employee
7 years agoHi PowerBi888
You may create a measure like below:
Measure = SUMX ( VALUES ( Table1[Month] ), AVERAGE ( Table1[BudgetAmt] ) )
Regards,
PowerBi888
Helper I
7 years agoWorking fine! using this measure , thanks a lot.
Measure =
SUMX ( VALUES ( Table1[Month] ), AVERAGE ( Table1[BudgetAmt] ) )