Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi Expert
I cannot see the where the error is in the followng DAX is not ignoring the blanks the count
Distinct No Blanks = CALCULATE(DISTINCTCOUNT(shc_shingrix_practice[crm_call_name]),FILTER(shc_shingrix_practice,shc_shingrix_practice[crm_call_name] <> ""))
Solved! Go to Solution.
Hello @Invesco ,
you have to provide space between double inverted commas.
Your measure should look as below:
Distinct No Blanks = CALCULATE(DISTINCTCOUNT(shc_shingrix_practice[crm_call_name]),FILTER(shc_shingrix_practice,shc_shingrix_practice[crm_call_name] <> " "))
As an alternative you can also try
Distinct No Blanks =
IF(ISBLANK(shc_shingrix_practice[crm_call_name]), BLANK(),
CALCULATE(DISTINCTCOUNT(shc_shingrix_practice[crm_call_name])))
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Hello @Invesco ,
you have to provide space between double inverted commas.
Your measure should look as below:
Distinct No Blanks = CALCULATE(DISTINCTCOUNT(shc_shingrix_practice[crm_call_name]),FILTER(shc_shingrix_practice,shc_shingrix_practice[crm_call_name] <> " "))
As an alternative you can also try
Distinct No Blanks =
IF(ISBLANK(shc_shingrix_practice[crm_call_name]), BLANK(),
CALCULATE(DISTINCTCOUNT(shc_shingrix_practice[crm_call_name])))
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
143 | |
121 | |
112 | |
59 | |
58 |