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.
Hi COmmunity,
I Have a calculation like this:
How to write this? I tried some and worked with 1 filterd value, but I need to filter all those.
Thanks in advance!
Solved! Go to Solution.
Try
Filtered Total =
CALCULATE (
SUM ( 'BI-Despesas'[nVlrNomiB] ) + SUM ( 'BI-Despesas'[nVlrJuroB] )
- SUM ( 'BI-Despesas'[nVlrAbatB] ),
NOT 'BI-Despesas'[nCodCIPg] IN { 201, 999 },
NOT 'BI-Despesas'[nCodGrPg] IN { 1001, 1002, 1003 }
)
Try
Filtered Total =
CALCULATE (
SUM ( 'BI-Despesas'[nVlrNomiB] ) + SUM ( 'BI-Despesas'[nVlrJuroB] )
- SUM ( 'BI-Despesas'[nVlrAbatB] ),
NOT 'BI-Despesas'[nCodCIPg] IN { 201, 999 },
NOT 'BI-Despesas'[nCodGrPg] IN { 1001, 1002, 1003 }
)