Forum Discussion
refint650
Helper III
4 years agodistinct employee count Less than threshold value
Hello My requriment to show count of employees whose variance amount less than $1M ,so to achieve this i'm doing calculations of actuals & forceast, variance in 3 measure columns. so in return fu...
- 4 years ago
Hi, refint650
When Actuals, Forecast, and Variance are all Measure, you can also try the following methods.
Measure = IF ( [Measure Variance] < 1, CALCULATE ( DISTINCTCOUNT ( 'Table'[Name] ), FILTER ( ALL ( 'Table' ), [Measure Variance] < 1 ) ), 0 )Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more.
TheoC
Community Champion
4 years agoHi @refint650
You can achieve this using following measure:
Measure = CALCULATE ( DISTINCTCOUNT ( 'Table'[Employee Name] ) , FILTER ( 'Table' , 'Table'[Amount] < 1 ) )
Hope this helps!
Theo