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,
Is there a way to aggregate a measure without summing? So here is my calculation for average % of volunteers. Right now, its showing the right calculation on the date level which is correct.
Here is what the data looks like in the table at the date level.
I'd like the average % volunteers measure not to sum up by city and site but give an aggregate percentage by site and city.I just feel like there's a DAX i'm missing here.
Here's what it looks like when it sums the data at site and city level. Definitely not what i want. Please help.
@Anonymous , Not very Clear.
But if want to change aggregation after a level, you can try a formula like
sumx(values(Site[Site]),[Average % per Date])
or
sumx(summarize(Site,Site[Site],Site[City],"_1",[Average % per Date]),[_1])
@amitchandak , I tried that but i'm getting the same values as my original dax. i think the dax i need is the summarizecolumn dax but i'm not sure how to use it within the dax i'm currently using. I took a stab at it but it giving me an error.
I figured it out. Here is the syntax i used and it worked perfectly.
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
5 |