Hi,
I have used {field:Current Estimate}-{field:PresaleEstimate} to get the difference between 2 columns and Current Estimate is something which i created using formula its giving me error what should be used to get difference in such columns PresaleEstimate is a custom filed defined in JIRA so that is ok how can i define Current Estimate to get results
Hello @Sanjivani Wayal ,
At the moment, only Jira fields are available for use as variables in formulas (more here).
From your description, it sounds like Current Estimate is another formula column.
The workaround here will be to use a local variable to define your Current Estimate value in the new formula. It would look like this:
with _currentEstimate = your_formula_here :
_currentEstimate - presaleEstimate
Please let me know if this helps.
Best,
David
_currentEstimate = your_formula_here : here there is no formula its a condition as below :-
IF originalestimate :
(originalestimate)
Else :
(presaleestimate)
How can i get this condition in variable and then use that variable in another formula
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Sanjivani Wayal ,
IF is a conditional statement that can be used in formulas.
The solution is the same. You just replace your_formula_here with the one you want to use, in this case an IF conditional statement.
with _currentEstimate =
IF originalestimate :
(originalestimate)
Else :
(presaleestimate)
:
_currentEstimate - presaleEstimate
There is more on the language used to create formulas in Structure here. Please let me know if this helps.
Best,
David
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.
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.