Forum Discussion
Anonymous
5 years agoNot applicable
Count Blank Values in a Column
Hi Experts I am trying to count the number of blank values in my table based on another column Blank Values = CALCULATE( COUNTROWS('STG Fact_To_Do'), 'STG Fact_To_Do'[Created_Date]=BLANK(), ...
amitchandak
5 years agoSuper User
Anonymous , Try like
countrows(filter('STG Fact_To_Do', isblank(Created_Date)))
or
calculate(countrows('STG Fact_To_Do'),filter('STG Fact_To_Do', isblank(Created_Date)))
- Anonymous5 years agoNot applicable
Both DAX formula return back blank as oppsed to the value 3
- amitchandak5 years agoSuper User
Anonymous , Please find the find attached after signature