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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Deleting rows from QVD

Hi All,

I have a QVD which contains 3 fields.

 

IDNameAge
1AAA10
2BBB20
3CCC30
4DDD40
5EEE50
6FFF60
7GGG70

I have and excel which contains ID.Now i need to delete all the ID's from my QVD which are there in excel.

Excel:  

 

ID
1
2
3
4
5

Final data in QVD should be only 2 entries (ID= 6,7).

Regards

Roopesh

1 Reply
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

//You can load your Excel file :

Load

ID as IDXL

From MyExcelFile

;

//Load your QVD

QVD:

Load

*

From MyQvd

Where not Exist(IDXL, ID)

;

STORE QVD into MyQvd;

//I think it's work

Help users find answers! Don't forget to mark a solution that worked for you!