With the filter "Start Date"> = startOfDay (-2d) it lists the tasks created yesterday. Using today's date reference, I want you to bring the tasks that were created two days ago.
Please help me.
Hello Aline,
I would try this JQL - created <= endOfDay(-2) and created >= startOfDay(-2)
This filter will show you only tickets that were created two days ago:
createdDate > startOfDay(-2) and createdDate < startOfDay(-1)
It's querying tickets that were created between the start of the day two days ago, and the start of day yesterday.
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.