Forum Discussion
Anonymous
7 years agoNot applicable
COUNTIFS Functionality in DAX
Trying to find a DAX equivilent to: =IF(COUNTIFS(A:A,$A2,B:B,">="&0)>0,"OK","Not Ok") This excel formula gives me the result in column C
- 7 years ago
Anonymous
You can use this column
Column = IF ( CALCULATE ( COUNTROWS ( tABLE1 ), FILTER ( ALLEXCEPT ( Table1, Table1[Customer] ), [Date Diff] > 0 ) ), "ok", "NOT ok" )
Zubair_Muhammad
7 years agoCommunity Champion
Anonymous
You can use this column
Column =
IF (
CALCULATE (
COUNTROWS ( tABLE1 ),
FILTER ( ALLEXCEPT ( Table1, Table1[Customer] ), [Date Diff] > 0 )
),
"ok",
"NOT ok"
)
- Anonymous7 years agoNot applicable
Thank you!