Forum Discussion
VegarOyfoss
Helper II
6 years agoCOUNTROWS exclude based on empty value in other column
Hi Guys I have a table like this: VA Value va 3 va not.va name va 3 not.va 5 Currently I have a meassure which calculates total rows with va, and this obvi...
- 6 years ago
Hi VegarOyfoss
try
VA = CALCULATE ( COUNTROWS (table1), table1[VA] = "va", NOT(ISBLANK(table1[Value])) )
az38
Community Champion
6 years agoHi VegarOyfoss
try
VA =
CALCULATE (
COUNTROWS (table1),
table1[VA] = "va",
NOT(ISBLANK(table1[Value]))
)- VegarOyfoss6 years ago
Helper II
az38 Brilliant. Thank you. That did the trick