Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I just need to load only the highlighted values.
Something like this:
:
WHERE Match(ESFA_Sales_Rep__c, 'Aaron Fox', 'Adam Harris', 'Adrian Meyer', 'Andre Andrade');
Best,
Peter
In your script, add a WHERE clause to the LOAD statement that forces a load of only these values.
Peter
Something like this:
:
WHERE Match(ESFA_Sales_Rep__c, 'Aaron Fox', 'Adam Harris', 'Adrian Meyer', 'Andre Andrade');
Best,
Peter
load *
From table
WHERE match(YourField,'Value1','Valu2','Value3')