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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Is there a way to
* add block dates for the project or tasks and is configurable to apply to individual tasks.
* when block dates are applied, the target end date can be shifted automatically.
@David Yew - Welcome to the Atlassian Community.
That functionality does not currently exist in the delivered Jira Core Cloud product. You can create links between issues to so at the issue view you can see that one impacts the other but if you change the blockers date it will not impact the other issues start date. I would suggest submitting a feature request here: https://jira.atlassian.com/browse/JRACLOUD-69559?jql=project%20%3D%20JRACLOUD%20AND%20type%20%3D%20Suggestion%20AND%20statusCategory%20!%3D%20Done%20ORDER%20BY%20Updated This is a new product and is developing rapidly so getting suggestions in on how it can be better will be important to Atlassian in making changes.
There are apps that provide Gantt charts like BigPicture that provide this functionality that you could consider in the meantime.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @David Yew
I am glad that you've decided to explore BigPicture.
I enclose links to BigPicture video tutorials regarding the initial configuration. I hope you find them useful:
Moreover, I recommend you to participate in one of the open webinars that take place every Wednesday and every Friday. The webinars include a 1h product demo followed by a 30-minute Q&A session.
On the same page, you will find the video recording of a webinar. You can watch it and, if necessary, join just the Q&A session.
In case of further questions, just let me know in this thread.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Another option is that if you add a "Block date" field, you could add an automation like:
It would look something like this:
(If it doesn't work, then I got mixed up again, and the Linked Issue type has to be "blocks". But I think that's right.)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh you'll probably want a different field for "Block date". I just used "Planned end date" for both. But on the other hand, if it's limited only to tasks that are Blocking, then you can just use the same field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Darryl Lee, thank you for your suggestion, will this be possible to add a logic to compute the planned end date?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ooooh, I was thinking about that. Like, figuring out how many days it will push the current date out? That seems.... trickier.
Unfortunately Automation Rules still do not allow for embedding one smart value inside another, so you could do something like this:
{{linkedIssue."Planned end date".plusDays(3)}}
Which would let you tack on 3 days to the existing Planned end date.
However, if your # of days was stored in a field, like "Days to fix" or something, you would NOT be able to use that value.
{{linkedIssue."Planned end date".plusDays({{issue."Days to fix"}})}}
(AGAIN, to clarify, the above value will not work.)
There is a feature request to allow this to work:
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.