I have created an asset listing that lists completed form submissions. Then, using the %asset_short_name_linked% gets output as a CSV file.
All works well and as expected - however, I would like to limit the submissions by a specified date (e.g., only output submissions newer than 1 Aug 2016)
How can I pass a 'date' form field value into the code below (replacing the hard coded value I have there currently)?
You are probably better off doing this with a search page and passing a start and end date search value to it to only list the form submissions you need. You could search for the created date value for example to filter them by date.
Alternatively, if you want to stick with what you have, if you are passing the date value via a GET URL parameter, you could do something like: %begin_asset_created^replace_keywords:gte_date:{globals_get_date}%...
Yep, you're right, I can replicate the same issue. Smells like a bug to me, I'll see if I can get a developer to review and investigate.
In the meantime, you would be better off using a search page to filter the list instead and pass your date range to that so that you don't even print or generate the assets you don't want to.