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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Anonymous
Not applicable

add 2 measures to get only unique values

hi guys,

 

please i need you assistance, i have been trying to do this for a week now, i dont know if its my logic that is wrong. i have two measures as follows:

 

ActiveUsers = 
VAR s= CALCULATE(DISTINCTCOUNT(allproducts[CustomerId]),allproducts[TradeType] = 1, allproducts[TradeStatus]=0)
return
IF(ISBLANK(s),0,s)

 

 and 

 

 

EquityUsers = CALCULATE(DISTINCTCOUNT(allproducts[CustomerId]),allproducts[AggregatePurchaseValue] > 0)

 

 I would like to add these 2 measures and get the total number of distinct customers from the both of them. 

 

this is a copy of my dataset 

Link to Dataset 

 

thank you

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Please try a measure like

ActiveUsers =
VAR s= CALCULATE(DISTINCTCOUNT(allproducts[CustomerId]),filter(allproducts ,(allproducts[TradeType] = 1 && allproducts[TradeStatus]=0) || allproducts[AggregatePurchaseValue] > 0))
return
IF(ISBLANK(s),0,s)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
AlB
Community Champion
Community Champion

Hi @Anonymous 

Do you want the intersect of the union of those two groups of customers?

Total users =
VAR activeUsers_ =
    CALCULATETABLE (
        DISTINCT ( allproducts[CustomerId] ),
        allproducts[TradeType] = 1,
        allproducts[TradeStatus] = 0
    )
VAR equityUsers_ =
    CALCULATETABLE (
        DISTINCT ( allproducts[CustomerId] ),
        allproducts[AggregatePurchaseValue] > 0
    )
RETURN
    COUNTROWS ( INTERSECT ( activeUsers_, equityUsers_ ) )

Use UNION instead of INTERSECT on the last line of code if that's what you need

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

Anonymous
Not applicable

Thank you for your reply,

 

I tried both the union and the intersect, and they were not exactly what i wanted.

@amitchandak solution gave me the expected output.

amitchandak
Super User
Super User

@Anonymous , Please try a measure like

ActiveUsers =
VAR s= CALCULATE(DISTINCTCOUNT(allproducts[CustomerId]),filter(allproducts ,(allproducts[TradeType] = 1 && allproducts[TradeStatus]=0) || allproducts[AggregatePurchaseValue] > 0))
return
IF(ISBLANK(s),0,s)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Thank you.

 

This is exactly what i wanted.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.