Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have a DAX that sums Product from a detailed table. I would like to take the measure a step farther and enter the sum of the products for a particular group when the Division is S. For example, for Division S in Group X, the answer should be 10 + 12+15=37. The Division S for Group Y should be 43. I do not care about totals as those are removed from my presentation.
| Division | Group | Product |
| N | X | 10 |
| W | X | 12 |
| S | X | |
| E | X | 15 |
| N | Y | 12 |
| W | Y | 13 |
| S | Y | |
| E | Y | 18 |
Solved! Go to Solution.
measure=if(selectedvalue(table[division])="S",calcluate(sum(table[product]),all(table[divsion])),sum(table[product]))
measure=if(selectedvalue(table[division])="S",calcluate(sum(table[product]),all(table[divsion])),sum(table[product]))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 5 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 11 | |
| 9 | |
| 8 |