Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Material | Vmatriz |
7 | NG0130 |
Material | Vmatriz |
7 | AR0128 |
7 | NG0130 |
7 | NG0130 |
Material | Vmatriz |
7 | NG0130 |
7 | AR0128 |
Thank you for your help
HI,
You can use not exists() in your script like this
Load Employee, ID, Salary from Employees.csv;
Load FirstName& ' ' &LastName as Employee, Comment from Citizens.csv where not exists (Employee, FirstName& ' ' &LastName);
Hope it hels
HI,
You can use not exists() in your script like this
Load Employee, ID, Salary from Employees.csv;
Load FirstName& ' ' &LastName as Employee, Comment from Citizens.csv where not exists (Employee, FirstName& ' ' &LastName);
Hope it hels
Thank you! It worked!