Forum Discussion
Error in distinctcount
- 5 years ago
HI FinozAndrea ,
Try adding a FILTER statement to your DAX along with ALL SELECTED, so that it considers all the filters coming from outside.
As you haven't pasted your DAX, I am trying to write a sample:
N Comp liv 4 = Calculate(DISTINCTCOUNT(tablename[column1]), FILTER(ALLSELECTED(tablename), tablename[column1] <> BLANK()))
Try using your tablename and column name in above dax.
Thanks,
Pragati
HI FinozAndrea ,
Try adding a FILTER statement to your DAX along with ALL SELECTED, so that it considers all the filters coming from outside.
As you haven't pasted your DAX, I am trying to write a sample:
N Comp liv 4 = Calculate(DISTINCTCOUNT(tablename[column1]), FILTER(ALLSELECTED(tablename), tablename[column1] <> BLANK()))
Try using your tablename and column name in above dax.
Thanks,
Pragati
It works,
thankyou very much!