Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Consider the following query result (in the Edit Queries screen):
Now here are two measures I have made on that query:
This is the result:
I expected to see:
Am I missing something, or is this a bug?
Solved! Go to Solution.
Hi @CamronBute,
To use these method or multiple conditions in filtering, please wrap them in Filter method
CALCULATE([Total Views],FILTER(Views,NOT(ISBLANK(Views[Who]))))
Hi @CamronBute
Two reasons I believe are contributing to your unexpected results:
Assuming the blank names are empty strings, this code should work:
Total authenticated views =
CALCULATE (
[Total Views],
Views[Who] <> "",
VALUES ( Views[Who] )
)
Hi @CamronBute
Two reasons I believe are contributing to your unexpected results:
Assuming the blank names are empty strings, this code should work:
Total authenticated views =
CALCULATE (
[Total Views],
Views[Who] <> "",
VALUES ( Views[Who] )
)
Yes, I see now. Thank you for explaining the behaviour I was missing, too.
Hi @CamronBute,
To use these method or multiple conditions in filtering, please wrap them in Filter method
CALCULATE([Total Views],FILTER(Views,NOT(ISBLANK(Views[Who]))))
Yes, this works. Thank you!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.