Forum Discussion
Ashishvca
4 years agoFrequent Visitor
Calculated measure not working after publishing
Hi I am using calculated measure which are working fine on desktop but not working after I publish them. Here is the formula I am using Direct Selling = -(CALCULATE(sum(Consolidated[USD]),(Co...
- 4 years ago
You have more parentheses than you need. Two extra sets. Try this:
Direct Selling = - CALCULATE( SUM( Consolidated[USD] ), Consolidated[Account] = "Direct_Selling" )If that fails, then I'd need to see the model image.
edhans
Community Champion
4 years agoYou have more parentheses than you need. Two extra sets. Try this:
Direct Selling =
- CALCULATE(
SUM( Consolidated[USD] ),
Consolidated[Account] = "Direct_Selling"
)
If that fails, then I'd need to see the model image.