Hi I am trying to create a filter based on resolution due dates, I need to view issues which have a resolution due date 5 days from today, see my query below
project = ABCD AND ( issuetype = "XYZ" OR issuetype = "GHM") AND ( "Epic Link" = 123 or "Epic Link" = 456 ) AND (resolutiondate = startOfDay('+'5) )
This does not work. I have put + in quotes since its a key word specific to JQL. Please advise.
Hi @Tan
Welcome to the Atlassian Community.
You could leave the plus sign out and just use startOfDay(5), but if you want to keep + in your JQL, you have to put the whole inc in quotes, startOfDay("+5")
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.