I want to add a custom field with a value dependent on the values of another default field.
Example: We have the default fields for estimation like Story points and Original Estimates, Now I want to create a new custom field say QA estimates, this field is 10% of the value of the original estimates.
I have the admin access for the product.
How I can do that?
Hi @VT Jira
Welcome to the Atlassian Community!
You can use Automation for Jira for this use case. Since you have admin access, you can take below steps.
Go to Automation:
Create a New Rule:
Trigger: Field Value Changed
Condition: Issue Type (Optional)
Action: Edit Issue Fields
{{issue.timetracking.originalEstimateSeconds}} * 0.1
Save and Publish the Rule:
Thank you so much @Kishan Sharma , it really helped me a lot. I was able to add the automation.
One more query here:
Like I am adding QA Estimates and PM Estimates (Two custom fields). I also want to create and update a third custom field with the sum of the QA Estimates and PM Estimates. Can we do this using the automation as I was not able to find the exact for this?
I have used {{issue.Story Points}} * 0.15 to update the QA Estimates and PM Estimates fields.
Please suggest.
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.
Glad to help @VT Jira !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @VT Jira
What have you tried already?
Look at how to use automation with smart values on calculations.
https://support.atlassian.com/cloud-automation/docs/jira-smart-values-math-expressions/
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.