Forum Discussion

ovetteabejuela's avatar
ovetteabejuela
Icon for Impactful Individual rankImpactful Individual
7 years ago
Solved

Blank() 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...
  • ovetteabejuela's avatar
    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]))