Maybe I am missing something obvious:
I have a custom field "Date for next review".
One issue is set for review June 9th next year.
This query gives me a result:
project = BACKLOG AND "Date for next review" > 30d AND "Date for next review" < 200d
This query does not:
project = BACKLOG AND "Date for next review" > 30d AND "Date for next review" < 10m
(I know 200d and 10m is different in number - just to make a clear cut case)
Any idea?
Ah, I know this one. 10m is 10 minutes, not months.
You can only do weeks, days, hours and minutes in the range searches. I think the closest you can get is by using the endOfMonth() functions, or something like > 30d and < 90d
So your first query is basically: date between 30 days from now and 200 days from now
while the second one
date between 30 days from now and 10 minutes from Now–> that makes no sense
I guess you took m for months but it is minutes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hmm, who converted my answer to a question?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I mean comment...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
* arf... non-functioning brain...*
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I only know it because I did exactly the same several times when I was learning JIRA... :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To conclude: I missed something obvious :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.