I make a template of the query so it is quick to replicate each time I need to run the extract, so I don't want to have to select a date each time. How do I do this in the Apex Data Loader, is it possible?
3 respuestas
Hi Sara, Your Query would like something below
SELECT Id, Name, (any other fields separated by comma) FROM ObjectAPIName WHERE CreatedDate = LAST_N_MONTHS:6
Everytime you extract the data you need to paste this Query in the Query Generator box.
Please refer to the following link for more info