Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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
@diogoricciardi , Try a measure like
YTD Sales = CALCULATE(SUMX(values('Date'[Month Year]), calculate(Distinctcount(Table[ID]))),DATESYTD('Date'[Date],"12/31"))
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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
21 | |
20 | |
19 | |
13 | |
12 |
User | Count |
---|---|
42 | |
28 | |
23 | |
22 | |
22 |