Hello,
who can give me a hint? I have to prepare a JQL date comparison with 2 different dates.
1. 1st of all I have the current date
2. planned project date from/to ---> always filled
3. actual project date from/to -----> sometimes not filled
If the current date is between the planned project date then I have to list the project no. to the project leader. In all other cases no listing depending on actual project date.
If the actual project date is filled then I have to do the same check and listing.
Best regards,
Uwe
Try the following approach:
project = xx AND planned_start < now() and Planned_end > now() OR project = xx AND Actual_start < now() and Actual_end > now()
Hello,
you're right with the statement. Thanks.
In this case, I have another question. I can't find any solution in the WWW. How can I calculate with now(). Now() doesn't accept any parameters. How it looks like e.g.:
now() -1y or
now() +15d
Thanks, for further help.
Uwe
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are correct, the function now() does not accept parameters. you can do the same with the function startOfDay(), like startOfDay(1), startOfDay("-2d")
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.