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
Gurote
New Member

How to count unique values based on aggregated sums

Hi

 

I have a dataset containing, amongst much other, following information:

Supplier name       Sum invoice
Supplier 1              500 

Supplier 2              1000

Supplier 3               500    

Supplier 4               2000

Supplier 5               4000

Supplier 1               500 

Supplier 2               1000

Supplier 3               500    

Supplier 4               2000

Supplier 5               4000

 

I want a unique count of suppliers with total sum of invoices> 1999. Using distinct count and a visual level filter > 1999 gives me a unique count of suppliers for each invoice greater than 1999 = 2 (supplier 4 and 5). The correct count would be 3 (supplier 2 with a total of 2000, supplier 4 with a total of 4000, and supplier 5 with a total of 8000). Preferably, I would have this as a measure, enabeling my to further viusalize the count as I slice down in my report at different departments, categories, etc (which are other columns linked to the ones illustrated above). Does anyone know how to do this, if possible?

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Hi @Gurote

 

Either of these should work. I'm assuming [Sum invoice] is a column.

The 2nd pattern is useful if you want to filter on those same suppliers, but change the DISTINCTCOUNT to something else

 

Distinctcount of Suppliers with Total Invoices over 1999 =
COUNTROWS (
    FILTER (
        VALUES ( YourTable[Supplier name] ),
        CALCULATE ( SUM ( YourTable[Sum invoice] ) ) > 1999
    )
)

Distinctcount of Suppliers with Total Invoices over 1999 =
CALCULATE (
    DISTINCTCOUNT ( YourTable[Supplier name] ),
    FILTER (
        VALUES ( YourTable[Supplier name] ),
        CALCULATE ( SUM ( YourTable[Sum invoice] ) ) > 1999
    )
)

Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

2 REPLIES 2
OwenAuger
Super User
Super User

Hi @Gurote

 

Either of these should work. I'm assuming [Sum invoice] is a column.

The 2nd pattern is useful if you want to filter on those same suppliers, but change the DISTINCTCOUNT to something else

 

Distinctcount of Suppliers with Total Invoices over 1999 =
COUNTROWS (
    FILTER (
        VALUES ( YourTable[Supplier name] ),
        CALCULATE ( SUM ( YourTable[Sum invoice] ) ) > 1999
    )
)

Distinctcount of Suppliers with Total Invoices over 1999 =
CALCULATE (
    DISTINCTCOUNT ( YourTable[Supplier name] ),
    FILTER (
        VALUES ( YourTable[Supplier name] ),
        CALCULATE ( SUM ( YourTable[Sum invoice] ) ) > 1999
    )
)

Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Thank you! This solved my problem

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.