Hi All,
I need to create a filter where in; I can catch the data created between 4-6 days and 7-8 days
Hi @John Torres , your question isn’t quite clear. Can you clarify? Are you asking for a JQL that will return issues created earlier than 4d ago but less than 7d ago? If so try the following…
project = xxx and createdDate <= startOfDay(-4d) and createdDate >= startOfDay(-7d)
change to meet your precise needs
Hi John,
You can try the following:
created > startOfDay(-6) and created < endOfDay(-4)
To return Issues created between 4 and 6 days ago.
created > startOfDay(-8) and created < endOfDay(-7)
For Issues created between 7 and 8 days ago.
Hopefully that is what you were after, please let us know if that works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.