Forum Discussion
ovetteabejuela
Impactful Individual
7 years agoBlank() counts zeroes?
Why is this formula counting the zeroes as well: New Measure = CALCULATE(COUNTROWS('Table A'),'Table B'[Data Column]=BLANK()) ***Table A is related to Table B For example, if a particula...
- 7 years ago
ovetteabejuela I hope this post will help.
- 7 years ago
I think I resolved my own issue and just wanted to share for anyone who cames across this post
I simply changed this:
New Measure = CALCULATE(COUNTROWS('Table A'),'Table B'[Data Column]=BLANK())
to this:
New Measure = CALCULATE(COUNTROWS('Table A'),ISBLANK('Table B'[Data Column]))
parry2k
Super User
7 years agoovetteabejuela I hope this post will help.
- ovetteabejuela7 years ago
Impactful Individual
Thanks parry2k, we are just 4 seconds away from resolving... hahaha. but thanks for that link... it's very helpful to know those facts.