Forum Discussion
poojik
8 years agoFrequent Visitor
Error: DAX comparison operations do not support comparing values of type true/false
I am trying to create a new calcuated field to count all the account names if "ValidationStatus" is TRUE. The formula I am using is : Validated count = CALCULATE(DISTINCTCOUNT(accounts[name]),FI...
Anonymous
8 years agoNot applicable
Try this:
CALCULATE(DISTINCTCOUNT(accounts[name]),accounts[validationstatus])= "TRUE")
poojik
8 years agoFrequent Visitor
I am still getting the same error. Screen-shot attached.