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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Working with duplicate records

I have data of the given format

 

batchrecordspayment methodcountryregionpay description
130AmexUSAmericascard invalid
130AmexUSAmericascard limit exceeded
130AmexUSAmericascard invalid
130AmexUSAmericascard invalid
260MastercardJPASIAInsufficient balance
260MastercardJPASIAinvalid zipcode
260MastercardGBEMEAcard expired
380VISAGBEMEAcard expired
380VISAGBEMEAcard expired

 

i am trying to present records values in unique format in power BI. to show distribution and trend.

but when i rollup it gets summarized.

Has anyone seen this before and can provide a solution

1 ACCEPTED SOLUTION
v-janeyg-msft
Community Support
Community Support

Hi, @Anonymous 

 

Due to the characteristics of powerbi, if there is exactly the same data between rows, it will be automatically omitted in visual and only one row will be displayed. If you want to distinguish them, the easiest way is to add an index column in PQ.

Like this:

vjaneygmsft_0-1624439574380.png

vjaneygmsft_1-1624439862460.png

If it doesn't solve your problem, Please feel free to ask me.

 

Best Regards

Janey Guo

 

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

2 REPLIES 2
v-janeyg-msft
Community Support
Community Support

Hi, @Anonymous 

 

Due to the characteristics of powerbi, if there is exactly the same data between rows, it will be automatically omitted in visual and only one row will be displayed. If you want to distinguish them, the easiest way is to add an index column in PQ.

Like this:

vjaneygmsft_0-1624439574380.png

vjaneygmsft_1-1624439862460.png

If it doesn't solve your problem, Please feel free to ask me.

 

Best Regards

Janey Guo

 

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

amitchandak
Super User
Super User

In any visual when you these column

batch records payment method country region

 

you will get unique data

 

or you can create meusre like

measure = countx(summarize(Table, [batch],[records],[payment method],[country region]), [Batch])

 

or can create table summarize(Table, [batch],[records],[payment method],[country region], "Max" , max([pay description])),

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors