Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi All,
I am very new to Power BI and DAX calculation.
I have 5 Categories( A, B, C, D, E) with score value. That score itself is calculated as a new measure with DAX calculation like below:
December | January | February | |
Total | 26.72 | 27.42 | 26.30 |
A | 44.65 | 41.87 | 40.26 |
B | 53.80 | 56.30 | 53.70 |
C | 20.33 | 22.24 | 24.74 |
D | 11.89 | 14.60 | 12.56 |
E | 2.94 | 2.08 | 0.26 |
Hi @Anonymous
Does your data structure look like data in my table?
Then do you add columns in the matrix visual as below?
Then expected result:
"the Total by summing up the 20% of each category value for respective months"
should be way1 or way2, or anything else?
way1:
December | January | February | |
A | 44.65*0.2 | 41.87*0.2 | 40.26*0.2 |
B | 53.8*0.2 | 56.3*0.2 | 53.7*0.2 |
C | 20.33*0.2 | 22.24*0.2 | 24.74*0.2 |
D | 11.89*0.2 | 14.6*0.2 | 12.56*0.2 |
E | 2.94*0.2 | 2.08*0.2 | 0.26*0.2 |
Or
way2:
December | January | February | |
A | 44.65 | 41.87 | 40.26 |
B | 53.8 | 56.3 | 53.7 |
C | 20.33 | 22.24 | 24.74 |
D | 11.89 | 14.6 | 12.56 |
E | 2.94 | 2.08 | 0.26 |
total | 137.09*0.2 | 131.51*0.2 | 133.61*0.2 |
Best Regards
Maggie
When trying to calculate like below not getting the Correct value for TOTAL_MTD.
TOTA_MTD = CALCULATE(SUM(NPS[MTD]), FILTER(NPS,NPS[Survey Program[Category]]= "A" || NPS[Survey Program[Category]]= "B" || NPS[Survey Program[Category]]= "C" || NPS[Survey Program[Category]]= "D" || NPS[Survey Program[Category]]= "E"))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
56 | |
38 | |
34 |
User | Count |
---|---|
99 | |
56 | |
51 | |
44 | |
40 |