I have a Jira structure over multiple items that share the same issuetype but not necessarily the same schema.
I have a formula that sums over a value for a field but some of them are missing this field.
For better or worse, while we can add this field to those projects, I want to hardcode the value using the formula in a new variable.
Something like
if(annualized_value != undefined; annualized_value;
issuekey="PROJ-123"; 200;
issuekey="MLP-3234"; 4000;
0)
However, the issuekey="PROJ-123" and MLP-3234 do not show the resp value on their lines for that new column.
What do I do wrong (besides hard-coding stuff...)?