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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
EllaJ234
Frequent Visitor

Matrix removing duplicates (Dates)

Hi, 

 

I have a set of data which shows the number of bugs a repoter has. The table contains columns for reporters name, the bug ID number and the created date. 

 

I would like to view this on a matrix like this: The reporter and for each day how many bugs they reported. 

 

Reporter01/02/202202/02/202203/02/202204/02/202205/02/2022
Joe Bloggs34212

 

Now the issue I have is that when I pull this onto a Matrix instead of getting a box per date I get a box for each instance for each date. So if Joe Bloggs on 01/02/2022 reported 3 bugs I get something like this: 

Reporter01/02/202201/02/202201/02/2022
Joe Bloggs111

 

Which okay, if you add them up you get the 3 that were reported. But I do not want to see 3 instances of the item. 

 

All the dates are in short format so there is no time stamp that could affect this. Also this is all in one table so there is no relationship needed. 

 

I have also tried to create a separate date table but even when a relationship is determined it does not work. 

 

Any help would be highly appreciated. Thank you! 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @EllaJ234 ,

I created some data:

vyangliumsft_0-1662606403924.png

You might consider using a calculated table:

Table 2 =
SUMMARIZE('Table',
'Table'[created date],'Table'[Reporterreporters name],
"Count",COUNT('Table'[ID number]))

vyangliumsft_1-1662606403931.png

Result:

vyangliumsft_2-1662606403938.png

If you need pbix, please click here.

Matrix removing duplicates (Dates).pbix

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi  @EllaJ234 ,

I created some data:

vyangliumsft_0-1662606403924.png

You might consider using a calculated table:

Table 2 =
SUMMARIZE('Table',
'Table'[created date],'Table'[Reporterreporters name],
"Count",COUNT('Table'[ID number]))

vyangliumsft_1-1662606403931.png

Result:

vyangliumsft_2-1662606403938.png

If you need pbix, please click here.

Matrix removing duplicates (Dates).pbix

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

PaulDBrown
Community Champion
Community Champion

Use a measure for the bugs

Number of Bugs = SUM(Table[Bugs])





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Hi Paul, thank you for your reply! 

I tried this & it's still showing the same output. Do you know if there's maybe a grouping feature i'd need to use to pull all the duplicated dates into one date?

 

Can you provide sample non-confidential data or PBIX file?





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






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.