Forum Discussion
Anonymous
5 years agoNot applicable
Exclude blank from date column as a count
Hi Experts I am trying to count the nunber of dates in a column in Table A, and exclude the (blank) in the column. my Measure is = Calculate(countrows(table A),filter(table A, table A[Colu...
- 5 years ago
Anonymous You could try NOT(ISBLANK
= Calculate(countrows(table A),filter(table A, NOT( ISBLANK( table A[Column]) ) ) )
Otherwise why don't you just count the values in the column? It won't count it if it's truly blank:
= COUNT(TableA[Column] )
If that doesn't work, it might be possible that it's not actually blank and ="" instead
AllisonKennedy
5 years agoCommunity Champion
Anonymous You could try NOT(ISBLANK
= Calculate(countrows(table A),filter(table A, NOT( ISBLANK( table A[Column]) ) ) )
Otherwise why don't you just count the values in the column? It won't count it if it's truly blank:
= COUNT(TableA[Column] )
If that doesn't work, it might be possible that it's not actually blank and ="" instead
- Anonymous5 years agoNot applicable
thanks Allison....