March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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!
Solved! Go to Solution.
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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @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
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |