Forum Discussion
AnaJakic
8 years agoNew Member
Building sum over multiple rows
Hi everyone, I am just starting to work with Power BI and I have a question concering the aggregation of a variable. Here is an tiny excerpt of my ABT that I use for my Power BI visualizatio...
- 8 years ago
Hi AnaJakic,
You should be able to use the formula below to create a measure to calculate the sum of revenue in your scenario. :smileyhappy:
Measure = SUMX ( SUMMARIZE ( Table1, Table1[Service], "RevenueAVG", AVERAGE ( Table1[Revenue] ) ), [RevenueAVG] )Note: You'll need to replace 'Table1' with your real table name.
Regards
v-ljerr-msft
8 years agoMicrosoft Employee
Hi AnaJakic,
You should be able to use the formula below to create a measure to calculate the sum of revenue in your scenario. :smileyhappy:
Measure =
SUMX (
SUMMARIZE ( Table1, Table1[Service], "RevenueAVG", AVERAGE ( Table1[Revenue] ) ),
[RevenueAVG]
)
Note: You'll need to replace 'Table1' with your real table name.
Regards