Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
roberto99
Contributor III
Contributor III

Help Concatenate tables only non-duplicate fields

Hi, I can't leave the table as I need it;  I have the following table 

csvalue
006/014/L/420011
006/014/XL/420011
006/014/XXL/420011
006/014/L/420010
006/014/M/420010

I need to leave only the first different value so that it looks like this  (cs 1st line and 4th line equal, but I only need the first)

this is the result i need

csvalue
006/014/L/420011
006/014/XL/420011
006/014/XXL/420011
006/014/M/420010

 thanks

1 Solution

Accepted Solutions
Vegar
MVP
MVP

Try this.

Load 

  cs,

  value

FROM

   TABLE

WHERE

 NOT EXISTS (cs)

;

View solution in original post

2 Replies
Vegar
MVP
MVP

Try this.

Load 

  cs,

  value

FROM

   TABLE

WHERE

 NOT EXISTS (cs)

;

roberto99
Contributor III
Contributor III
Author

Thanks, I had not seen this option