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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
JolienR
Helper II
Helper II

Count ID filtered by last date for each ID

Hopefully someone can help me with this.
I want to distinct count each ID, filtered by the maximum date for each ID. So for example: 

JolienR_0-1678269627728.png

The rows which are marked yellow, need to be counted.
I want to use a measure, since it depends on the selected date in the slicer.

Hopefully someone can help me! 

2 REPLIES 2
MAwwad
Super User
Super User

 

You can use the following DAX measure to count the distinct IDs filtered by the maximum date for each ID:

 

 
Distinct Count by Max Date = CALCULATE( DISTINCTCOUNT('Table'[ID]), FILTER( ALL('Table'), 'Table'[Date] = MAX('Table'[Date]) && 'Table'[ID] IN VALUES('Table'[ID]) ) )
 

In this measure, we first use the MAX function to get the maximum date for each ID, and then use the FILTER function to filter the table to only include rows with that maximum date for each ID. Finally, we use the DISTINCTCOUNT function to count the distinct IDs in the filtered table.

Make sure to replace 'Table' with the name of your actual table. You can then use this measure in a visual along with a date slicer to get the count of distinct IDs filtered by the selected date.

Thanks for your response. However, the measure is counting the customers for the maximum date of the slicer since this are way to little ID's: 

JolienR_0-1678284410858.png

 

> I am selecting months in my slicer, not days.

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Kudoed Authors