Forum Discussion
DAX
Okay =>DISTINCTCOUNT counts ALL blanks as 1 distinct value
This means ALL Rows in the [24Hourflag] Column that are BLANK will count as 1 => meaning this 1 will be added to the Total
Say you have 5 distinct non-blank values => your formula without the -1 will return 6
because 5 distinct non blank + 1 for all blanks
so the - 1 deducts the blanks
Does this make sense? :smileyhappy:
EDIT:
Look at the picture....
DISTINCTCOUNT will return 3
without - 1 or the FILTER function filtering out the blanks
So it will group all the Non Blanks (counts all non blanks which is 5 in your example) and all the blanks(count will be 1 for all of them).
When we say -1 , it removes the group which has a count of 1?
Is that right??
COUNT_ID COUNT_BKLANK
5 1
- v-huizhn-msft9 years agoMicrosoft Employee
Hi karkar,
As the Sean said, DISTINCTCOUNT counts ALL blanks as 1 distinct value, all BLANK will count as 1. So -1 , it removes the BLANK group.
Best Regards,
Angelia