Hi,
i want to compare the estimated duration of my task with the remaining Days in my active sprint and give a warning, if there are not enough days left, to solve the Task.
My Problem: I don't know how to get the value of the remaining Days.
this is my Code. I hope someone can tell me the correct name for my placeholder "Sprintremaintime",
----
with diff = (Sprintremaintime - Estimated_Duration):
IF diff < 0:
""":panel[Warnung]{backgroundColor=red color=white}"""
ELSE:
""":panel[Okay]{backgroundColor=green color=white}"""
----
Best Regards,
Uwe
Seems to be a bigger Problem for the most people. ;-)
I found a solution, that works for me:
Today is Tuesday. My Testsprint-Ending is set to Friday. Here is my code:
----
with sprintzeit = DAYS_BETWEEN(NOW(), MAX(sprint.enddate)):
with diff = (sprintzeit - estimated_duration + 1):
If issueType != Epic:(
IF diff > 2 :
""":panel[$diff]{backgroundColor=green color=white}"""
Else If diff > 0:
""":panel[$diff]{backgroundColor=orange color=white}"""
Else:
""":panel[$diff]{backgroundColor=red color=white}""")
----
and this is what i want to see (just the left days of my tasks):
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.