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.
Hi community I need some help with a basic formula for a structure I created.
I need the formula to pull information from a ticket(s) in the structure, like this (These fields are being extracted from certain fields in the tickets):
Field 1 (K) = 1
Field 2 (P) = 4
Field 3 (O) = 3
The formula would add P+K together (well call this sum A), and then do the following calculation: K x A x O = ____
Can anyone please help me out with this?
Thank you!
Hi Ryan,
This is actually rather simple with formula columns in Structure. This code should do what you describe.
WITH A = P + K :
K * A * O
The formula will ask you to define what K,P, and O are, but you can easily point them to issue fields. The reason we don't need to define A is because it is set by the WITH statement in the first line. The second line simply returns the result of the multiplication, this is what will be displayed in the column.
Cheers,
Nick [ALM Works]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.