I created a custom calculated date field and i need it to look at the issues created date and minus 7 days from that... how can id o this? i have tried this - return issue.getCreated() - 7
It's certainly possible, but first of all I wanted to ask, why?
If you're only going to use JQL, then you could achieve the same thing with
created > "-7d"
Also, issue.getCreated() is of type Timestamp, so you can't just subtract from it, since it doesn't know what you are subtracting... 7 minutes? 7 days? 7 years? You have to use some other method to subtract so that it knows.
Which add-on are you using for your field ? Script Runner, JIRA Misc Custom Fields, other ?
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.