Forum Discussion
ivancornejo_
8 years agoFrequent Visitor
Count blank in matrix
Hi, I have this matrix -> I need count the blank spaces in a new column or use a measure. I tried a lot of possibles solutions from the forum, but a can't get a solution Help, please ...
ivancornejo_
8 years agoFrequent Visitor
Thanks^2 SteveCampbell,
I follow the steps and I get this
Yes, now I have 1 in my matrix for an article without units for a size, but as you can see, the articles with units and size, the measure show a number like 0 or negative number, but never is greater than 1, now just need sum those 1 but I can't resolve :(
SteveCampbell
Memorable Member
8 years agoCan you try
Contador :=
if(
COUNTROWS('Article')*COUNTROWS(Size)-COUNTROWS('Stock Price')<1,
0,
COUNTROWS('Article')*COUNTROWS(Size)-COUNTROWS('Stock Price')
)