Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Cbhuvi27
Contributor III
Contributor III

Eliminate Duplicates in Qliksense

Hello All,

I am doing partial load and also have some duplicate records. How can we eliminates Duplicates when we are doing the partial load in Qlliksense.

For Eg:

Test:
Load *
Inline [
Name,No,User
Name1,1,AAA
Name2,2,BBB
Name3,3,CCC
];

Add Only
Load *
Inline [
Name,No,User
Name4,4,DDD
Name1,5,AAA];

Now I want to eliminate Name1 with No 1.

Labels (2)
3 Replies
PrashantSangle

use where not exists()

try below

Test:
Load *
Inline [
Name,No,User
Name1,1,AAA
Name2,2,BBB
Name3,3,CCC
];

Add Only
Load *
Inline [
Name,No,User
Name4,4,DDD
Name1,5,AAA
]
where Not exists(Name)
;

 

Regards,

Prashant Sangle

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Vegar
MVP
MVP

Qlik released a merge feature in 2021 that I believe can be of help for you.

I suggest you start looking at this page: https://help.qlik.com/en-US/sense/February2024/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPref...

Cbhuvi27
Contributor III
Contributor III
Author

Hello Prashant,

I guess this will remove Name 1 with No.5 but I want the vice versa.