Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to compare data in a table?

Hi,

I have one table that holds data of invoices. I want to test if I have duplicate invoices. A duplicate invoice is an invoice with the same invoice number, customer name, invoice date and invoice amount.

Do you have any idea how I could build up this test an generate a table with these duplicate invoices?

Thanks in advance!

Kind regards,

Jens

2 Replies
swuehl
MVP
MVP

Maybe just create a straight table with dimensions invoice number, customer name, invoice date and invoice amount and one expression:

= if(count([invoice date]) >1,1,0)

This should flag and filter (if supress zero values is enabled in presentation tab) your duplicates.

Hope this helps,

Stefan

Not applicable
Author

Thanks a lot this indeed solved my problem!

Kind regards,

Jens