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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
qinh_ann
Frequent Visitor

Sort Column with Duplicate Values

Hey all, 

I have a table table looking like this. Due to data sensitivity, I've blurred out the actual amount for the last two columns. 

Capture.PNG

 

As you can see, under the "Invoice Number" column, there are a lot of duplicate values. What I want to do is filtering out the table using this column. Technically, for every invoice number that are duplicates of each other, only maintain the one that has the earliest "Current Date for Feed" and delete out the later dates according to the "Current Date for Feed". For example, those rows with the Invoice Number being 22682564, we are only keeping the one with the earliest date under "Current Date for Feed", which is 11/22/2021 and delete the other rows with the same Invoice Number. 

I would prefer using calculation/Dax function rather than Power Query for this specific Power BI file since the database linked to get all of these data are huge, which are already slowing down the file performance. But if there's no other way than using Power Query then please feel free to still share your solution.

Would really appreciate if you guys can help me out with this. 

Thanks in advance!

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@qinh_ann So, there are a number of approaches. You could create a table visual with Invoice Number and then put Current Date for Feed and use a default Earliest or Max aggregation. Then you could write measures like:

 

Open Amount Measure = 
  VAR __Date = MIN('Table'[Current Date For Feed])
  VAR __Invoice = MAX('Table'[Invoice Number])
  VAR __Table = FILTER('Table',[Current Date For Feed] = __Date && [Invoice Number] = __Invoice)
RETURN
  MAXX(__Table,[Open Amount])

and 

Original Amount Measure = 
  VAR __Date = MIN('Table'[Current Date For Feed])
  VAR __Invoice = MAX('Table'[Invoice Number])
  VAR __Table = FILTER('Table',[Current Date For Feed] = __Date && [Invoice Number] = __Invoice)
RETURN
  MAXX(__Table,[Original Amount])

 

 

You could also create a new DAX calculated table using SUMMARIZE by Invoice Number and FiscalYear with a MIN of your Current Date for Feed and then a kind of similar calculation for ADDCOLUMNS to add in your Open Amount and Original Amount.

 

In Power Query you could do a Group By by those same two columns with a MIN for your Current Date for Feed and I think you would preserve all rows for your other two columns. I'd have to play with it.

 

Finally, the "right" way to do it would be to get your database folks to create you a view that summarizes the data the way you want and then your data loads would be much faster (not importing a bunch of useless rows).

 

Let me know what route you are thinking.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@qinh_ann So, there are a number of approaches. You could create a table visual with Invoice Number and then put Current Date for Feed and use a default Earliest or Max aggregation. Then you could write measures like:

 

Open Amount Measure = 
  VAR __Date = MIN('Table'[Current Date For Feed])
  VAR __Invoice = MAX('Table'[Invoice Number])
  VAR __Table = FILTER('Table',[Current Date For Feed] = __Date && [Invoice Number] = __Invoice)
RETURN
  MAXX(__Table,[Open Amount])

and 

Original Amount Measure = 
  VAR __Date = MIN('Table'[Current Date For Feed])
  VAR __Invoice = MAX('Table'[Invoice Number])
  VAR __Table = FILTER('Table',[Current Date For Feed] = __Date && [Invoice Number] = __Invoice)
RETURN
  MAXX(__Table,[Original Amount])

 

 

You could also create a new DAX calculated table using SUMMARIZE by Invoice Number and FiscalYear with a MIN of your Current Date for Feed and then a kind of similar calculation for ADDCOLUMNS to add in your Open Amount and Original Amount.

 

In Power Query you could do a Group By by those same two columns with a MIN for your Current Date for Feed and I think you would preserve all rows for your other two columns. I'd have to play with it.

 

Finally, the "right" way to do it would be to get your database folks to create you a view that summarizes the data the way you want and then your data loads would be much faster (not importing a bunch of useless rows).

 

Let me know what route you are thinking.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler Thanks for your help! I ended up doing the table visual and then manage to do measurement from measurement for other needed visual.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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