[SOLVED] Issue with Export

I am having an issue exporting data from the database. When I go to export it will only let me go back to 2013, where I have users who were subscribed before then. Any help going back further than 2013 would be appreciated.

You need to change/add the start date in the config.php file.

# year ranges. If you use dates, by default the drop down for year will be from
# three years before until 10 years after this the current value for year. If there
# is no current value the current year will be used.
# if you want to use a bigger range you can set the start and end year here
# be aware that the drop down may become very large.
# if set to 0 they will use the default behaviour. So I'm afraid you can't start with
# year 0. Also be aware not to set the end year to something relatively soon in the
# future, or it will stop working when you reach that year.
define('DATE_START_YEAR', 0);
define('DATE_END_YEAR', 0);

Like it says (in config-extended.php file) which is there so you have ALL the options available, but must be used in config.php file, START defaults to 3 years back, but to set it to a specific start year, change DATE_START_YEAR from 0 to 2010 for example.

Thanks that corrected the issue. Appreciate the quick reply.