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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a measure called SumOfMonth and it is the Sum of 2 other Measures.
I have a Matrix Table that uses Months for Row and is filtered by a slicer. I wanted to get the Average of SumOfMonth and Display it on a Card,
My Initial thought is to use Average and put the Measure name but it doesn't accept it. I'm really new to DAX and I can't figure out how to achieve this.
Thank you
Solved! Go to Solution.
If you create a measure:
[Avg of SumOfMonth] =
AVERAGEX(
DISTINCT( T[Month] ),
[SUMMonth]
)it'll do what you want. If, for instance, you put it on the matrix, for each individual month it'll display [SUMMonth] and the total row will show you the average across the months in the matrix. Put the measure on a card and you'll get the average as well.
If you create a measure:
[Avg of SumOfMonth] =
AVERAGEX(
DISTINCT( T[Month] ),
[SUMMonth]
)it'll do what you want. If, for instance, you put it on the matrix, for each individual month it'll display [SUMMonth] and the total row will show you the average across the months in the matrix. Put the measure on a card and you'll get the average as well.
Thank you so much @Anonymous it worked liked a charm!
Below is my Sample, apologies I can't share a PBIX, So I added the measure Escalweight and Challengeweight to get SUMmonth then I wanted to display 2.25 as the average on a card.
Hope this is clear.
@justnoob08 ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 20 | |
| 20 | |
| 17 | |
| 14 | |
| 14 |