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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi and thx for reading this.
I have a table below and i want to make a Measure that calculates the SUM of each Item divided by the count if The item and show it on Month.
ex.
Item A sum = 25 , it is 2 items, 25 /2 = 12,5
Item B sum = 40, it is 3 items, 40 /3 =13,3
item C Sum = 45, it is 2 items, 45/2 =22,5
The mesure should show.
202310 25,8
202311 22,5
/Thanks for any help.
Solved! Go to Solution.
@Wresen
Use this measrue:
MaeasureName =
SUMX(
ADDCOLUMNS(
SUMMARIZE( table , table[month] , talble[item] ),
"Avg" ,
CALCULATE( AVERAGE( table[value ) )
),
[Avg]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Wresen
Use this measrue:
MaeasureName =
SUMX(
ADDCOLUMNS(
SUMMARIZE( table , table[month] , talble[item] ),
"Avg" ,
CALCULATE( AVERAGE( table[value ) )
),
[Avg]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
98 | |
76 | |
76 | |
48 | |
26 |