Forum Discussion
Anonymous
4 years agoNot applicable
Count is not correct after after a visual filter
Hi: I have a table with the next data: Device name, time when the device was operated, # of operations I added a table to count how many times the device recorded an operation. In this cas...
- 4 years ago
Hi, Anonymous ;
In your screenshot, the fillter condition only apply on one visual. as count of Device , it don't have filter.
so we could create a measure on another visual to keep sync.
cout = CALCULATE(DISTINCTCOUNT('Table'[Device]),FILTER('Table', CALCULATE(COUNT('Table'[Device]),ALLEXCEPT('Table','Table'[Device]))>1))The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
tamerj1
Community Champion
4 years agoHi Anonymous
what is the current code of the measure?
- Anonymous4 years agoNot applicable
Hi:
I dont have any measure.