I am trying to create a filter for changes that starts during the next three days
I tired the following:
issuetype in (Change) AND "Planned Start Date" <= 3d
but I get results from different results from dates from a week ago
Yes as written that JQL will give you results for all plan to start dates that are less than three days from now so that includes everything in the past as well. If you want to exclude anything in the past maybe the following…
issuetype in (Change) AND "Planned Start Date" <= 3d AND "Planned Start Date" > startofday()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.