Forum Discussion
craig811
Helper III
5 years agoEasy DAX formula what am I missing?
Hi all, Sorry this should be a simple formula to show uncosted transactions that are 'Active' Uncosted Transactions = COUNTROWS( FILTER('Cost Element','Cost Element'[Item Status])="Ac...
- 5 years ago
craig811 , Try like
Uncosted Transactions =
COUNTROWS(
FILTER('Cost Element','Cost Element'[Item Status])="Active",
&& ( isblank( 'Cost Element'[Unit Cost] ) || 'Cost Element'[Unit Cost] =0.0000)
)
amitchandak
Super User
5 years agocraig811 , Try like
Uncosted Transactions =
COUNTROWS(
FILTER('Cost Element','Cost Element'[Item Status])="Active",
&& ( isblank( 'Cost Element'[Unit Cost] ) || 'Cost Element'[Unit Cost] =0.0000)
)