Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello,
I am trying to create a measure that sums the averages by client over whatever period of time I chose. I have a data table with 150k clients and 200k accounts for each month over a 36 month period. So for example below if i wanted to see the total client revenue by John Doe I would need the measure to prevode an answer of 22+40= $62. Before anyone asks I cannot add up the revenue by account instead of by client for various reasons I wont bore you with. I tried SumX(Values(Client),Calculate(Average(Client revenue)) per recommendations from other posts but its not providng the correct answer. Any help would be appreciated!
Month Account Client Account Revenue Client Revenue
| January-22 | 123 | John Doe | $10.00 | $22.00 |
| January-22 | 124 | John Doe | $12.00 | $22.00 |
| January-22 | 125 | Jane Doe | $17.00 | $30.00 |
| January-22 | 126 | Jane Doe | $13.00 | $30.00 |
| February-22 | 123 | John Doe | $15.00 | $40.00 |
| February-22 | 124 | John Doe | $25.00 | $40.00 |
| February-22 | 125 | Jane Doe | $11.00 | $23.00 |
| February-22 | 126 | Jane Doe | $12.00 | $23.00 |
Solved! Go to Solution.
You need to replace the VALUES with SUMMARIZE, because you need to take the month into account too
SUMX(
SUMMARIZE( 'Table', 'Table'[Client], 'Table'[Month] ),
CALCULATE( AVERAGE( 'Table'[Client Revenue] ) )
)
You need to replace the VALUES with SUMMARIZE, because you need to take the month into account too
SUMX(
SUMMARIZE( 'Table', 'Table'[Client], 'Table'[Month] ),
CALCULATE( AVERAGE( 'Table'[Client Revenue] ) )
)
That worked.. Thank you!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 52 | |
| 41 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 106 | |
| 39 | |
| 33 | |
| 25 |