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
This formula works like what I want
with hSeconds = 3600000:
with tOrignalEst = SUM {IF JQL { issueFunction in linkedIssuesOfAllRecursive("Key='ABC-12666'") and status != Canceled } :
OriginalEstimate
}:
Round(tOrignalEst /hSeconds,0)
But I don’t want to hardcode the issue key, I want to pass that as a variable, as given below, and I am not sure with the syntax. It is throwing me all sorts of errors. Can y'all help? Please
with hSeconds = 3600000:
with iKey = “ABC-12666”:
with tOrignalEst = SUM {IF JQL { issueFunction in linkedIssuesOfAllRecursive("Key='" + ikey + "'\"") and status != Canceled } :
OriginalEstimate
}:
Round(tOrignalEst /hSeconds,0)
Thanks for your help and I really appreciate it.
Hi Balaji,
Unfortunately you cannot inject variables into the JQL{} functions query string. Here is the relevant documentation. The reason it works this way is for performance reasons. In a large structure of 10k+ issues each with their own JQL query it becomes a very resource intensive operation to complete.
Cheers,
Nick
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.