Forum Discussion
ignas
5 years agoAdvocate II
Count distinct values Issue with non unique
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 Power BI ...
- 5 years ago
try the following formula:
countdistinctnonblank = CALCULATE(DISTINCTCOUNTNOBLANK(emails[link]), emails[link]<>"" && NOT ISBLANK(emails[link]))
ignas
5 years agoAdvocate II
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.
themistoklis
5 years agoCommunity Champion
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/