Forum Discussion
Anonymous
6 years agoNot applicable
Filter NULL Value
Hi Guys I'm trying to filter my datecompleted = NULL by using below dax, unfortunately it didn't help. Could anyone pls advise if anything wrong with my dax? #NULL Datecompleted = VAR To...
- 6 years ago
Hi Anonymous ,
Try to create a measure like below:
Measure = CALCULATE(COUNT(Table1[WorkOrderID]),Table1[DateCompleted]=BLANK())Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
6 years agoSuper User
Anonymous
#NULL Datecompleted =
VAR TotalRow = COUNTROWS(VALUES(swEqptHistory[WorkOrderID]))
Return
CALCULATE(TotalRow,FILTER(swEqptHistory,isblank(swEqptHistory[DateCompleted]) )
)
OR
#NULL Datecompleted =
VAR TotalRow = COUNTROWS(VALUES(swEqptHistory[WorkOrderID]))
Return
CALCULATE(TotalRow,FILTER(swEqptHistory,swEqptHistory[DateCompleted] == BLANK())
)
- Anonymous6 years agoNot applicable
Hi
Unfortunately it still didnt work. The output should be like below, i'm using manual input in filter pane.
- amitchandak6 years agoSuper User
Anonymous , try this setting too