Forum Discussion
Anonymous
2 years agoNot applicable
COUNTA if blank
Hello I am using COUNTA to count whenever there isnt a date in a row and then i put it in a card to showcase count. DOScountbypurchase = COUNTA(Table[Dateofpurchase]) When I select a value ...
ryan_mayu
Super User
2 years agoAnonymous
you can try this
DOScountbypurchase = COUNTA(Table[Dateofpurchase]) +0
or
DOScountbypurchase =if(isblank( COUNTA(Table[Dateofpurchase])),"No Dates")