March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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]),FILTER(accounts,VALUE(accounts[validationstatus])= TRUE()))
I am getting this error :
DAX Comparision operations do not support comparing values of type Number with values of type True/False. Consider using value or FORMAT function to convert one of the values.
Any help will be appriciated.
Best
P
Can someone help me please. I have the following code and I keep getting this error. I have tried wrapping the calculate statement in a VALUE function and I get the message, cannot convert true/false.
Hi try with this
Validated Count = CALCULATE ( DISTINCTCOUNT ( Accounts[name] ); FILTER ( Accounts; Accounts[validationstatus] = TRUE () ) )
Regards
Victor
The data type in Power BI desktop is True/False and the solution
Validated Count = CALCULATE ( DISTINCTCOUNT ( Accounts[name] ); FILTER ( Accounts; Accounts[validationstatus] = TRUE () ) )
works for power BI desktop. But when I publish the report on Power BI pro online. The data values chages to 0 and -1 hence the solution doesn't work.
I am not able to edit the expression in power BI pro to make it compatible.
Hi @poojik,
Can you share a sample of the data?
Best Regards,
Dale
The test data is attached. The data is downloaded from Dynamics CRM accounts entity. There are 6 fields with data in 14 rows :
1. Name : Text field
2. Validation status : Option set
3. Created on : Date and Time field
4. Rsubmitted : Option set
5. Units : Whole Number
6. Region : Text field
'
Now because I have to find out the absolute percentage of names that has Rsubmitted as "Yes" (example out of 4 Toronto records 3 has Rsubmitted as "Yes". Hence the percentage is 75%)
To find out hte percentage i have created a calcuated field :
Validated count =CALCULATE(DISTINCTCOUNT(accounts[name]),accounts[Rsubmitted]= "TRUE")
Absolute_percentage = (([Validated count])/(count(accounts[Name])))
The calculations are valid and am able to plot stacked bar graph (Screen-shot attached)
But when I try to publish this graph to Power BI pro- the data type for Rsubmitted" changes from TURE/FLASE to 1/0 (Screen-shot attached)
Try this:
CALCULATE(DISTINCTCOUNT(accounts[name]),accounts[validationstatus])= "TRUE")
I am still getting the same error. Screen-shot attached.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |