Forum Discussion
hasharma19
Helper II
3 years agoCalculate True and False Output
Dear All, I have an issue wherein i want to count the true and false value. I had creted a measure which is giving me true and False output. It is giving True wherever the rating is compliant and f...
Ahmedx
Super User
3 years agoYou need to write another measure like this
count of True Fixed = SUMX(VALUES('Date'[Year]),[count of True ])hasharma19
Helper II
3 years agoAhmedx -Thanks!
What changes i should apply to this DAX-Dist = CALCULATE(COUNTAX(SUMMARIZE('DG Audit Reports','DG Audit Reports'[Site Reviewed],"MaxT", COUNT('DG Audit Reports'[Year])), [MaxT]))
so that i can get the total count of site reviewed is 42
Or please suggest the DAX.
I have 42 site but while applying this dax getting 40.
- Ahmedx3 years ago
Super User
DAX-Dist Fixed = SUMX(VALUES('Date'[YEAR]),[DAX-Dist ])