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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

DISTINCTCOUNT with a measure greater than 0

I am trying to count the number of different IDs that have a balance greater than 0. The total due is a meausre i have already created. 

 

This is the formula i have been trying to work with...

Count ID = CALCULATE(DISTINCTCOUNT(Invoice[Customerid]),[Total Due] > 0)

 

The measure to calculate that balance, or Total Due is this

Total Due = SUM('Invoice Detail'[Trx_amount])-SUM('Invoice Detail'[Trx_totalpaid])

Thanks!

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous ,

 

You need to add a filter to your measure in order to make it work.

 

Redo your measure like this:

Count ID =
CALCULATE (
    DISTINCTCOUNT ( Invoice[Customerid] );
    FILTER ( ALL ( Invoice[InvoiceID] ); [Total Due] > 0 )
)

 

should work as expected

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @Anonymous ,

 

You need to add a filter to your measure in order to make it work.

 

Redo your measure like this:

Count ID =
CALCULATE (
    DISTINCTCOUNT ( Invoice[Customerid] );
    FILTER ( ALL ( Invoice[InvoiceID] ); [Total Due] > 0 )
)

 

should work as expected

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



@MFelix had an almost similar problem.
tried some genius moves there with long DAX coding, and got really irritated.

 

To cut it short. Thanks man, the solution worked like a charm for me.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.