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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Case:
I have three different income values (webshop, store and store house) in a dynamic filter.
When webshop is selected I have to calculated the turnover minus the cost of adwords. In the other cases the adwords cost do not have to be subtracted.
Can someone help me out with this?
Solved! Go to Solution.
Hi @Anonymous
Try this MEASURE
Measure = IF ( SELECTEDVALUE ( TableName[IncomeType] ) = "webshop", SUM ( TableName[Turnover] ) - SUM ( TableName[cost of adwords] ), SUM ( TableName[Turnover] ) )
Hi @Anonymous
Try this MEASURE
Measure = IF ( SELECTEDVALUE ( TableName[IncomeType] ) = "webshop", SUM ( TableName[Turnover] ) - SUM ( TableName[cost of adwords] ), SUM ( TableName[Turnover] ) )
Thanks a lot!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.