Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi everyone,
I'm having this weird issue and desparately looking for a solution for this.
I have 3 measures which are Count, Average and Count * Average , the total of Average and Count * Average are not giving me the correct total as shown below :
As you can see the total for the Average and the Count * Average are not the expected total I need.
I tried SUMX(Table, (Count * Average)) technique but no avail.
Any calculation that will give me $3,434,682 for the Average and $6,363,700 for the for the Count * Average column would be great help!
Thanks!
Solved! Go to Solution.
you need creat 2 measures
1) m1 = Count * Average
2) m2 = SUMX( VALUES('Table'[ID]), [m1])
you need creat 2 measures
1) m1 = Count * Average
2) m2 = SUMX( VALUES('Table'[ID]), [m1])
Spot on! This seems to be working in my case. I tried using SUMX without the VALUES() function and just the table/column name which didn't work but this did.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
109 | |
100 | |
95 | |
38 | |
37 |
User | Count |
---|---|
151 | |
126 | |
75 | |
74 | |
57 |