Forum Discussion
Anonymous
8 years agoNot applicable
calculate when selected in dynamic filter
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 c...
- 8 years ago
Hi Anonymous
Try this MEASURE
Measure = IF ( SELECTEDVALUE ( TableName[IncomeType] ) = "webshop", SUM ( TableName[Turnover] ) - SUM ( TableName[cost of adwords] ), SUM ( TableName[Turnover] ) )
Zubair_Muhammad
Community Champion
8 years agoHi Anonymous
Try this MEASURE
Measure =
IF (
SELECTEDVALUE ( TableName[IncomeType] ) = "webshop",
SUM ( TableName[Turnover] ) - SUM ( TableName[cost of adwords] ),
SUM ( TableName[Turnover] )
)- Anonymous8 years agoNot applicable
Thanks a lot!