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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
capriconuser
Creator
Creator

extract ID's which is not match

hI 

I have script like this

 

 

sheet:
LOAD 
      
     SubField(Task, ' ',1) as Task_ID,
     Task
FROM
data\SHHET1.xls
(biff, embedded labels, header is 6 lines, table is [All Projects$]);
data:
LOAD 
      
     SubField(Task, ' ',1) as Task_ID,
     Task_Name
FROM
data\data.xls
(biff, embedded labels, header is 6 lines, table is [All Projects$]);

 

 

Now there is some Task _ID  in data which is not in SHHET1 ...

and I want  extract those ID's  

I don't want to do in script.. how I do that in expression ?

0 Replies