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.
hello , i really need help
so i create a measure 1
Chiffre_d'affaire_encaissé = [ttc_actuel]-Finance[SoldeRisque]
after that , i add another measure 2 to display only the positive amount and change those how are negatif to 0
CA_Encaissé_filtré = SWITCH(TRUE(); ([Chiffre_d'affaire_encaissé] < 0) ; 0 ; [Chiffre_d'affaire_encaissé])
My problem is that in the total it's apply this condition too and i want to display the total
any idea please haw to disable this filter on the total
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
You can also take a look at my Matrix Measure Total Triple Threat Rock & Roll Quick Measure here:
thank you for your response but i'm sorry but i didn't find my solution in this you work with average per cqtegory and for my case i want to apply this filter only on rows et display the total without taking in consideration this filter on total 😕
Right, it's a general solution that you need to modify to fit your specific use case.
i khnow , but in my case i didn't find how to remove the filter from the total 😕