You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello everybody,
I want to compare today with an exact date. Today is variable.
Something like this:
I tried diffrent functions without any results:
Where is my mistake?
Cheers,
Felix
Hello @Mohamed Benziane
this helps me a bit but it still gives me the wrong issues.
What i tried:
project in (a, b, c, d) AND status was Open after "2020-08-15"
the result was every issue in the projects that has the status open. I was expecting with the word after that the secons statement should be false. Becouse 2020-08-15 is in the futur.
Do I make any mistake?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Felix Schmidt ,
Are you talking about JQL ? What is the requirement behind it ?
JQL retrieves issues, so you would have to compare a date field to a static/relative date.
, i.e.
created >= '2020-06-01'
created >= startOfMonth()
would work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Antoine Berry
yes I'm talking about JQL.
I try to find any issue that has an specific status - e.g. open - after a specific date - e.g. 15.08.2020.
for example
status = Open AND startOfDay() >= '2020-08-15'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Were you able to resolve this? Even i trying to check on the similar lines
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.