Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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