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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
diogoricciardi
Frequent Visitor

Distinct Count YTD by Month

Hi everyone,

 

Hope you're all safe.

 

I'm having some trouble trying to figure out how to calculate a YTD distinct count by month.

To be more specific, when I use TOTALYTD function with DISTINCTCOUNT it counts the distinct values using the entire table, which means, if there's a value that appears both on January and on February, it will count as 1.

What I would like to do is to count these values separately, the distintict count of january + the distinct count of february and so on.

Is there an option for doing it automatically? I mean, without having to count each month separately and adding afterwards?

 

Any help will be very much appreciated.

 

Thanks

 

3 REPLIES 3
amitchandak
Super User
Super User

@diogoricciardi , Try a measure like

YTD Sales = CALCULATE(SUMX(values('Date'[Month Year]), calculate(Distinctcount(Table[ID]))),DATESYTD('Date'[Date],"12/31"))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Holy crap, that worked...

Sorry to be a pain, but can you explain to me what is really going on in this function? I could't figure it out.

 

Thank man..

@diogoricciardi , values('Date'[Month Year]) is forcing the data to be distinct count till month level, and post that sumx will work. A level of details implementation

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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