Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
abhaysingh
Specialist II
Specialist II

Cross Tables Duplicates Removal

HI all,

i made a cross table in Which i have combine 6 column into one field which is my AGeing column.. now my Ageing values Frequency is increased.. how can i remove Duplicates from them.

regards

Abhay

3 Replies
Not applicable

try This:

use Distinct to remove duplicates

ex:

Tablename:

LOAD  Distinct 

     oneField

FROM

[..\QVD\Raw QVD\Tablename.qvd]

(qvd);

sunny_talwar

May be try a resident load from your previous table and use a group by statement with the FirstValue function which will give you the first instance of the repetition.

Best,

Sunny

Anonymous
Not applicable

hi,

you must add a DISTINCT just after your LOAD, so that you load only different lines