Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewalex
Contributor III
Contributor III

Load if not equal

Hello,

I have a problem with my Skripting.

I join two Tables to one.

But I want only the elements, where the [Object-ID] is not included in Table1


Aufgaben:

LOAD [Object-ID],

     a,

b

FROM

[..\10_Data\test.xlsx]

(ooxml, embedded labels, table is Aufgaben);

join load distinct

[Object-ID],

   a,

b

FROM

[..\30_QVDs\Aufgaben.qvd] where ...............

(qvd);

I hope someone can help me.


Alex

10 Replies
qlikviewalex
Contributor III
Contributor III
Author

Thanks. It works.

The mistake was the (qvd);


That's wrong:

[..\30_QVDs\Aufgaben.qvd]

where not exists([Object-ID]

(qvd);


That's work:

[..\30_QVDs\Aufgaben.qvd](qvd) where not exists( [Object-ID]);