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.
I've created a simple matrix and added to them a measure (with switch inside):
Money = SWITCH(TRUE(),
AND(Sale[Sales]>=6000,Sale[Sales]<7500),100,
AND(Sale[Sales]>=7500,Sale[Sales]<9000),300,
etc.
where [Sales] is another measure, that calculates sum of sales.
Values in columns (sausis, vasaris etc.) are correct, but for TOTAL (Viso) it not SUM all the values like i suposed should be, but applies that same measure. Why this is happening and how to avoid that? This is really annoying 😞
Solved! Go to Solution.
@Daniel_Fdrvc This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
@Daniel_Fdrvc This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Yes yes yes 🙂 thank you, in second link i've found what i was looking for!