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 all, I'm trying to have the last line as a total of all average data shown in table. Basically all data shown by day is an average per day of a whole year. But when I use the Matrix visualization I cannot see the total but only the average of all SKUs... when I actually want the total of all SKUs.
Can anyone help?
Thanks.
Solved! Go to Solution.
You are missing a ) after Values(Sheet1[SKU]
Regards
Hi, you need to create a measure:
AverageVolumen = AVERAGE(Table1[Volumen])
And another :
MeasuretoUse = IF ( HASONEVALUE ( Table1[SKU] ); [AverageVolumen]; SUMX ( VALUES ( Table1[SKU] ); [AverageVolumen] ) )
Regards
Victor
Thanks for your response velarde. But it's giving me an error in the formula (see below)
Thanks a lot for your help!!
It worked perfectly.