Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.