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
Hello
I have a simple issue:
Source table
Aggregated table:
How to get only a count for a link that has a non-null value? In this case, I should get 3: link1+link2+link4=3
Solved! Go to Solution.
try the following formula:
countdistinctnonblank = CALCULATE(DISTINCTCOUNTNOBLANK(emails[link]), emails[link]<>"" && NOT ISBLANK(emails[link]))
@themistoklis @amitchandak @Anonymous
Thanks a lot for such a quick response.
I tried all of your solutions and only @themistoklis solution gave me the correct results:
@themistoklis Do you know why I need to wrap around CALCULATE? Why just simple function DISTINCTCOUNTNOBLANK does not have correct results?
Hello @ignas
I used 'Calculate' function as I had to apply filters (e.g. <>"" && NOT IS BLANK) in the formula.
You can only apply filters in a formula through the CALCULATE function.
https://docs.microsoft.com/en-us/dax/calculate-function-dax
@themistoklis
I understand how CALCULATE function works. I just cannot understand why I cannot use only DISTINCTCOUNTNOBLANK function in this case? Why if I only use DISTINCTCOUNTNOBLANK it still gives me a value of 4 which means it still counts blanks.
It has to do with your background data. PowerBI treats differently Blank, NULL and EMPTY values.
Maybe the following 2 articles will give you the answer:
https://www.sqlbi.com/articles/blank-handling-in-dax/
try the following formula:
countdistinctnonblank = CALCULATE(DISTINCTCOUNTNOBLANK(emails[link]), emails[link]<>"" && NOT ISBLANK(emails[link]))
[# Distinct Non-Blank Links] =
calculate(
distinctcount( T[link] ),
keepfilters( not isblank( T[Link] ) )
)
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.