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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi everyone,
I have data set of Countries, Products, Supply and Demand value, I created a measure call " Supply Possibility"=Supply-Demand.
Then I want to separate negative and possible value into 2 measures and the right Sum will shown up in Total Row.
I already tried some suggestion to calculate the number but just show as attached picture with WRONG TOTAL, it should be something like BLUE and RED
Solved! Go to Solution.
@ChiVi , Create a measure on top of your measure and use
Sumx(Sumamrize(Table, Table[Country], Table[Product], "_1", [Current Measure]), [_1])
| User | Count |
|---|---|
| 51 | |
| 37 | |
| 31 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 138 | |
| 102 | |
| 59 | |
| 36 | |
| 35 |