Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
deepakqlikview_123
Specialist
Specialist

finding distinct and duplicate records

Hi all,

Pfa

I have 2  tables having same structure. I need to find out duplicate records and distinct records amongst them.

Can you please suggest how should I go ahead.

Thanks

3 Replies
vikasmahajan

you can upload this tables with flags like

TableA:

Load

     A,

    B,

    C,

     'F1'  as Flag

...

from table a

concatenate

load

Load

     A,

    B,

    C,

   'F2' as Flag

...

from table b

And use set analysis  with flag 'F1' & 'F2'  to find duplicate.

Hope this may help you.

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
tamilarasu
Champion
Champion

Hi,

Check the attachment.

elakkians
Partner - Contributor III
Partner - Contributor III

Hi,

AutoNumber(RecNo(),Field) as Field1

this will create a auto number, if there is a reputation.

if the field value is distinct you will get 0 in field1 else you will get auto number generated the number of times the field value is repeated .

Thanks