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
radiant
Frequent Visitor

Calculate cumulative distinct values whose amounts are not zero per date

We have a table with columns for a period of few years:

  • holder
  • date
  • amount (this is an income or deductions for this date for holder)

Data looks like, where sum - is a measure.

dateholderoperationsum
01/01/2021Mike1010
01/02/2021Sam2020
02/03/2021Mike919
02/03/2021Sam121
05/04/2021Mike-190
06/04/2021Sam223
07/05/2021Tom33

 

Result should be

datecount
01/01/20211
01/02/20212
02/03/20212
05/04/20211
06/04/20211
07/05/20212

how can we build a report/measure to get Distinct count of Holders/day who have amount > 0?

 

Thanks in advance!

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

6 REPLIES 6
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Jihwan_Kim
Super User
Super User

Hi, @radiant 

Please check the below picture and the measure, whether it is what you are looking for.

The sample pbix file's link is down below.

 

 

Picture1.png

 

Counting holders =
VAR currentdate =
MAX ( 'Table'[date] )
VAR untilcurrentdatetable =
SUMMARIZE (
FILTER ( ALL ( 'Table' ), 'Table'[date] <= currentdate ),
'Table'[holder],
"@operationsum", SUM ( 'Table'[operation] )
)
VAR filtergreaterthanzero =
FILTER ( untilcurrentdatetable, [@operationsum] > 0 )
RETURN
COUNTROWS ( filtergreaterthanzero )

 

 

https://www.dropbox.com/s/djmhus2tn1cdcr9/radiant.pbix?dl=0 

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


jdbuchanan71
Super User
Super User

@radiant 

Try a measure along these lines.

Number_Of_Holders = CALCULATE ( DISTINCTCOUNT ( 'YourTable'[holder] ), 'YourTable'[amount] > 0 )

Thanks a lot! I am sorry, I asked it wrong. Corrected my question in initial  post.

@radiant 

not clear about how you get the result.  Did you only share a part of your sample data?





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

Proud to be a Super User!




that is the whole sample data.

The logic is the following:

- for each date, calculate the Count of Unique holders whose balance is positive. That would give us a nice chart of Holders over time;

- the holder balance is not stored directly, but can be calculated by walking through transactions (In/Out). This is something we cannot change. So to calculate a balance of holder ad date X, we should summ up all the transactions <= that date.

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.