Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I'm triying to make a filter in the Data Loader, for example
Column: SERVICE, this column bring me a lot name of services provides to a company, but I do not want that certainly services count in the app that I'm developing and the services are: AMBULANCE and PIMP.
How can I do the filter? any example?
Thanks a lot,
Regards,
Oscar,
If you want to exclude AMBULANCE and PIMP, add a Where clause to the load:
... Where Match(SERVICE, 'AMBULANCE', 'PIMP') = 0;
If you want to exclude AMBULANCE and PIMP, add a Where clause to the load:
... Where Match(SERVICE, 'AMBULANCE', 'PIMP') = 0;