I am trying to create some Issue Filters in JIRA based on CreateDate.
CreateDate
The only date/time function I can find is Now() and searches relative to
Now()
We're using Jira 6.2 and I use this query:
updatedDate > startOfDay(-1d) AND updatedDate < endOfDay(-1)
to return all of the issues that were updated from the previous day. You can combine with whichever queries you want to return the appropriate issues for the previous day.