Forum Discussion
Calculate True and False Output
Ahmedx -Thanks a ton for the DAX.
However, ths issue still persist.
The below table i have created with DAX:-
Similarly, the DAX you have shared also goving 40 count too.
- Ahmedx3 years ago
Super User
You need to write another measure like this
count of True Fixed = SUMX(VALUES('Date'[Year]),[count of True ])- hasharma193 years ago
Helper II
Ahmedx -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 ])
- hasharma193 years ago
Helper II
Ahmedx -Thank you very much for all the support!
How i can get rid of future 0.00% values.
have used 2 measures1-_2023 = VAR DEL=CALCULATE([_DECat]/[_HAWBCount],DimDate[ISOYear]=2023)
RETURN
IF(ISBLANK(DEl),0,DEl)
for filtering out false
2-(MAXDate = DimDate[Date]<=MAX (Delivery_Exce[ERDF NC Date])
- Ahmedx3 years ago
Super User
I'm not sure I understand you but try to write
1-_2023 = VAR DEL=CALCULATE(DIVIDE([_DECat],[_HAWBCount]),DimDate[ISOYear]=2023) RETURN IF(ISBLANK(DEl),0,DEl)