• Resolved dirk93

    (@dirk93)


    I have formulas that dynamically add a plus sign in front of a positive number, however the “+” never appears to the user.

    I tried switching the character settings to UTF-8 but it always reverts back to “Keep current charset”.

    Here is are two examples of formulas I am using in a Calculated Field:

    IF(fieldname17<=1,”,IF(AND(fieldname17<2,fieldname17>=1),prec(((-100)/(fieldname17-1)),0),’+’+prec((fieldname17-1)*100,0)))

    ————

    (function(){
    var result = fieldname37;
    return IF(result==””,””,IF(result>0,’+’+result,result));
    })()

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @dirk93

    You are using in the equation the same calculated field where the equation is defined. This kind of equation is not recommended because can generate infinite loops. However, in your current calculated fields, the “+” symbol is not being prepended because you have ticked the checkbox: “If the value entered manually, no evaluate equation” in their settings.

    Please, untick the checkbox.

    Best regards.

Viewing 1 replies (of 1 total)

The topic ‘Special Characters Not Showing (“+”)’ is closed to new replies.