Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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]))
)
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.