March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
Kindly need to resolved my issue.
Basically, I want to count the unique values by monthly and excluding the childrenId that counted in the previous month and also I need the total of the number of children id for add and delete status. here my illustration table.
ChildrenId | Date | Status |
1 | 1 january 2020 | Delete |
2 | 2 january 2020 | Delete |
3 | 3 january 2020 | Add |
4 | 3 january 2020 | Add |
1 | 1 february 2020 | Delete |
2 | 1 february 2020 | Delete |
3 | 1 february 2020 | Delete |
4 | 2 february 2020 | Add |
For the total add and delete children id, I though I already correct number used "distinctcount" function and filtered by status.Please see the dax that I used :
Add Children ID =
Add Children ID =
but the problem is when I try to create "Monthly Chart", distinct count function also counting ChildrenId that already count in the previous month.
Is it there any way or dax that can be used that can exclude the ChildrenId that already count in the previous month ??
Any help from expert will be really appreciated.
Hi @TaufikMaggangka .
Use the below DAX formulaes;
1)
User | Count |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
24 | |
21 | |
20 | |
15 | |
10 |