QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!

Who Me Too'd this solution

simenkg
Specialist
Specialist

You need to first load the field you want to check as a separate field and use the syntax below.

Table A:

Load

     UniqueField,

     UniqueField as UniqueTestField,

     Field1,

     Field3

From

SomeTable;

Table B:

Concatenate(Table A)

Load

     UniqueField

     Field1,

     Field4

From

OtherTable

WHERE not exists(UniqueTestField,UniqueField);

View solution in original post

Who Me Too'd this solution