The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 }
)
User | Count |
---|---|
18 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
12 | |
9 | |
8 |