Hi Guys
I have a table like this:
VA | Value |
va | 3 |
va | |
not.va | name |
va | 3 |
not.va | 5 |
However, I also want to calculate so that it does NOT count when Value column is empty. So in example above it should give total of 2
I know that the below would count everytime VA is va and Value is 3, giving a count of 2, but I am not able to figure out how to do it to exclude when [Value] is empty
Solved! Go to Solution.
Hi @VegarOyfoss
try
VA =
CALCULATE (
COUNTROWS (table1),
table1[VA] = "va",
NOT(ISBLANK(table1[Value]))
)
Hi @VegarOyfoss
try
VA =
CALCULATE (
COUNTROWS (table1),
table1[VA] = "va",
NOT(ISBLANK(table1[Value]))
)
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
119 | |
75 | |
66 | |
51 | |
49 |
User | Count |
---|---|
183 | |
101 | |
80 | |
79 | |
77 |