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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
mhmmd_srf
Creator II
Creator II

Using Not Exist

Hi All,

I want to delete from qvd for few Units. I have created Inline load and used that in Not Exists function. Below is my code:

UnitDelete:

Load * Inline

[DelUnit,

10,

100

];

Transaction:

LOAD

    CUSTOMER,

    "ABC #",

    "Invoice #",

    "Invoice Qty",

    "Invoice Type",

    "Total Extended Cost",

    Units,

   "Customer Group"

FROM [lib://QVDs/Transactions_01_09132016.qvd](qvd)

where Units not Exists (DelUnit,Units) ;

But I am getting error. Could you please help me on this.

Thanks in advance for your help.

Regards,

Sarif

1 Solution

Accepted Solutions
MindaugasBacius
Partner - Specialist III
Partner - Specialist III

Remove Units:

where Units not Exists (DelUnit,Units) ;

View solution in original post

4 Replies
NareshGuntur
Partner - Specialist
Partner - Specialist

Syntax error.

Use this

where not Exists (DelUnit,Units)



Cheers,

Naresh

robert_mika
Master III
Master III

What is your error?

MindaugasBacius
Partner - Specialist III
Partner - Specialist III

Remove Units:

where Units not Exists (DelUnit,Units) ;

mhmmd_srf
Creator II
Creator II
Author

Hi Robert,

It is Garbage error after statement.