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 !!
I want to display in the graphic the number of duplicate rows according to date. But i don't know how to count uniquely multiple columns.
Thank you for your help !
Solved! Go to Solution.
Hi @mahsy ,
Please try this measure. And set the filters as shown in the figure.
Measure = COUNTROWS('Table') - COUNTROWS(SUMMARIZE('Table','Table'[Course],'Table'[PR],'Table'[Date]))
Attached PBIX file for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @mahsy ,
Please try this measure. And set the filters as shown in the figure.
Measure = COUNTROWS('Table') - COUNTROWS(SUMMARIZE('Table','Table'[Course],'Table'[PR],'Table'[Date]))
Attached PBIX file for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
@mahsy ,
create a calculated column like the below and put that column in the X-axis (values) or Y-axis (values), then set the aggregation as count.
Earlier = COUNTX(filter(Table_count,EARLIER(Table_count[Course])=Table_count[Course] && EARLIER(Table_count[PR])=Table_count[PR] &&EARLIER(Table_count[Date])=Table_count[Date]),Table_count[Course])
Thanks,
Arul
Thank you.
Unfortunately i'm in live connection, so i can't create calculated column.
@mahsy ,
try this in measure,
cal = CALCULATE(COUNT(Table_count[Course]),FILTER(ALL(Table_count),
COUNTX(filter(Table_count,
EARLIER(Table_count[Course])=Table_count[Course] &&
EARLIER(Table_count[PR])=Table_count[PR] &&
EARLIER(Table_count[Date])=Table_count[Date]),
Table_count[Course])))
Thanks,
Arul
Here is what i get. It counts all rows.
I just want to count duplicate rows. Here is the expected result.
thank you for your help !
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 |
---|---|
25 | |
21 | |
20 | |
14 | |
13 |
User | Count |
---|---|
43 | |
37 | |
25 | |
24 | |
23 |