Forum Discussion
refint650
4 years agoHelper III
distinct 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.