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 all,
I am struggling with a measure as I would like to apply an IF condition.
I would like to sum up the costs, but IF Projects WBS starts with 'O.NO.XZZ', it should exclude the cost linked to GL Account A7.
When I however start with my IF function, I would like to refer to the column Project WBS, but it seems that I am only allowed to refer to a measure?
Project WBS | GL account | Cost |
O.NO.XZZ.123 | A7 | 100 |
O.NO.XZZ.124 | A8 | 200 |
P.NO.XZZ | A7 | 50 |
P.NO.XZZ | A7 | 70 |
Anybody could guide me to right direction ? 🙂
Solved! Go to Solution.
Hi @YBZ ,
Check this measure:
Measure = SUMX(ALL('Table'),'Table'[Cost])-SUMX(FILTER('Table',LEFT('Table'[Project WBS],8)="O.NO.XZZ"&&'Table'[GL account]="A7"),'Table'[Cost])
Best Regards,
Jay
Hi @YBZ ,
Check this measure:
Measure = SUMX(ALL('Table'),'Table'[Cost])-SUMX(FILTER('Table',LEFT('Table'[Project WBS],8)="O.NO.XZZ"&&'Table'[GL account]="A7"),'Table'[Cost])
Best Regards,
Jay
thanks, I am actually still struggling with this one. Basically I would need to create the following measure :
If Recharge project, it should sum up all actuals but EXCLUDE GL account A7995050. Otherwise, just sum up all actuals.
The second condition of my if statement works, but there is a problem with the first part.
Not sure what measure are you using, but if you want to sum the costs based on the condition you mentioned, do something like:
Your measure =
CALCULATE(
SUM('yourtable'[accountCost]),
FILTER(
Sales,
LEFT(Sales[Project WBS],8) <> "O.NO.XZZ"
)
)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂