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
gracechilton
Regular Visitor

Count number of accounts with same end date

Hi,

 

I'm trying to find for each date in a specific range, how many accounts had their most recent billing period end on that date. I'm able to find, by account, the most recent billing period end date, and I can also see, by date, how many accounts have A billing period that ends on that date. However, I'm unable to view date by date the number of accounts that have their LATEST billing period end on that date.

 

If anyone has any ideas on how to help with this, that would be great.

2 ACCEPTED SOLUTIONS

Whoops, left out an ALL:

 

Measure 2 = 
VAR __BillingDate = MAX('Billing'[Billing Period End Date])
VAR __tmpTable = SUMMARIZE(ALL(Billing),Billing[Account ID],"__lastBillingDate",MAX([Billing Period End Date]))
RETURN
COUNTROWS(FILTER(__tmpTable,[__lastBillingDate]=__BillingDate))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

@gracechilton,

 

Simply use ALLSELECTED Function instead of ALL Function.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

10 REPLIES 10

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.