Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a QVD which contains 3 fields.
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:
Final data in QVD should be only 2 entries (ID= 6,7).
Regards
Roopesh
Hi,
//You can load your Excel file :
Load
ID as IDXL
From MyExcelFile
;
//Load your QVD
QVD:
*
From MyQvd
Where not Exist(IDXL, ID)
STORE QVD into MyQvd;
//I think it's work