Skip to main content
I want to make a regular extract of data using the Apex Data Loader based on creation date = in the last 6 months.

 

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
  1. 28 sept 2015, 15:33
    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
0/9000