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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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