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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Dear All,
I have created the Measure with average data = sum ( value ) / Sum ( qty ) by month or by item.
I want to SUM data of average by month when i select year at the yellow color. How can i do that ? Please give me your advice.
Thanks in advance.
Solved! Go to Solution.
Hi @locle90 ,
I created a sample pbix file(see the attachment), please check if that is what you want.
Total =
VAR _tab =
SUMMARIZE (
'Table',
'Table'[Date],
"@avg", DIVIDE ( SUM ( 'Table'[value] ), SUM ( 'Table'[qty] ) )
)
RETURN
SUMX ( _tab, [@avg] )
Best Regards
Hi @locle90 ,
I created a sample pbix file(see the attachment), please check if that is what you want.
Total =
VAR _tab =
SUMMARIZE (
'Table',
'Table'[Date],
"@avg", DIVIDE ( SUM ( 'Table'[value] ), SUM ( 'Table'[qty] ) )
)
RETURN
SUMX ( _tab, [@avg] )
Best Regards
@locle90 , If there is a measure that gives average correctly putting it in a table visual with month should give a total value at the bottom row. If the requirement is to get sum of average in a card visual the dax will be different.
Dear @ChiragGarg2512
The table is one of the options. But how we can do that if we need to show on the card ?
Thanks
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 32 | |
| 20 | |
| 12 | |
| 11 |