Forum Discussion
PowerBIkalaimo
Helper I
7 years agoDAX comparison operations error Text to Integer
I have the following measure and am getting an error about comparing text to integer, and I'm not sure how I'm even doing that here? The measure is formatted as whole number. I need a distinct cou...
- 7 years ago
Figured out I had the parens in the wrong place. Changed to this and it works:
CAD DUI Arrests = CALCULATE(DISTINCTCOUNT(Cad_Call[CC_rin]), LEFT(Cad_Call[Final Call Type], 4) = "MVCD" || LEFT(Cad_Call[Final Call Type], 3) = "TRA") + 0Hope this can help someone else going nuts over this error
PowerBIkalaimo
Helper I
7 years agoFigured out I had the parens in the wrong place. Changed to this and it works:
CAD DUI Arrests = CALCULATE(DISTINCTCOUNT(Cad_Call[CC_rin]), LEFT(Cad_Call[Final Call Type], 4) = "MVCD" || LEFT(Cad_Call[Final Call Type], 3) = "TRA") + 0
Hope this can help someone else going nuts over this error