Converting text field numeric value for use in calculation
Is there some way we can parse a input txt field to output a number?
everything we have tried is still returning the result as a string.
we have checked we are first saving the calculation field as a number field.
The following all fail to achieve what we're after. The calculation will fail with "The result is not a valid number".
parseFloat(text_field)
parseInt(text_field)
Number(text_field)
text_field / 1
text_field + 0
etc
Please sign in to leave a comment.
Comments
1 comment