Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
CollabTechie
Frequent Visitor

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 2
dax
Community Support
Community 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 Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Anonymous
Not applicable

Hello @CollabTechie ,

This should be achievable using the CALCULATE function:

UniqueReviewedUsers =
CALCULATE (
    DISTINCTCOUNT ( ProductionData[Owner Email] );
    ProductionData[Reviewed] = "Yes"
)

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.