Forum Discussion
Anonymous
6 years agoNot applicable
Combing two measures
Hi Community.
I need to combine these two measure to work as one measure. Unique owners where reviewed = yes
ReviewedMeasure = COUNTROWS(FILTER(ProductionData, [Reviewed] = "Yes")) UniqueUsers = COUNTROWS(DISTINCT(ProductionData[Owner Email] )) Can you please help me combine them?
Thanks.
CT
2 Replies
- AnonymousNot applicable
Hello Anonymous ,
This should be achievable using the CALCULATE function:
UniqueReviewedUsers = CALCULATE ( DISTINCTCOUNT ( ProductionData[Owner Email] ); ProductionData[Reviewed] = "Yes" ) - daxCommunity Support
Hi CollabTechie ,
Could you please tell us if your question has been resolved. If so, in order to close the thread, please kindly mark helpful replies as answers. By doing so, it will benefit all community members who are having this similar issue. Your contribution is highly appreciated.
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.