Sep 18, 2021 09:26 AM
{Business User Value} + {Time Criticality} +{Risk Reduction - Opportunity Enablement} / {Story Point Estimate}
The first part works great then I add the / and error
its nothing to do with the format of the fields as {Story Point Estimate} + {Business User Value} works fine… any ideas? its seem really odd to me
Solved! Go to Solution.
Sep 20, 2021 12:44 PM
This creates and Error
Sep 20, 2021 12:44 PM
As you pointed out, a bug… could be a bug where the “+” operator gracefully handles lookup values, but the “/“ operator does not.
However, if all of your fields are just straight number fields, and there’s no possibility that any of them could be an array of values or a string value behind the scenes, then I don’t think I can provide any further input, as I’ve never encountered an issue like this myself.
Sep 20, 2021 12:46 PM
This works…
Sep 20, 2021 12:47 PM
Ah, those single-select fields are all technically strings values.
Try wrapping each reference to a single-select field in the VALUE()
function to convert it to an integer.
Sep 20, 2021 12:47 PM
So would you agree its a BUG then? do we know how I contact the developers to get this fixed? if that possible?
Sep 20, 2021 12:48 PM
Tried that already that does not work?
Sep 20, 2021 12:50 PM
Which field is the {Story Point Estimate}
field? Is it the number field (which is blank), or the single-select field with “55” in it?
Sep 20, 2021 12:52 PM
one of the values has 55 the others are black right now because I am not going to populate any more until it works… but the point it works with a + and - but not with a * or a / surely is the issue here?
Sep 20, 2021 12:56 PM
All working formula looks like this.
({Business User Value} + {Time Criticality} + {Risk Reduction - Opportunity Enablement}) + {Story Point Estimate}
Sep 20, 2021 12:58 PM
No, this definitely has to do w/ the string values. If I wrap them all in VALUE()
the division works fine for me:
There may be a bug here in the sense that the "+"
operator seems to be happy to gracefully convert your string into a number for you, while the "/"
operator will not, but this can be worked around by manually converting all the string values to numbers using the VALUE()
function.