Hi,
I have a problem with “if conditions”. If I for example have:
{ IF { mergeField someNumber } > 40.2 "Greater than" "Less than" }
and someNumber returns 40.166666666666664 (a java Double where toString is called)
then the result is: Greater than
But if someNumber returns 40.1
then the result is as expected: Less than
It seems that if the two numbers being compared has the exact same number of decimals, then the comparison works otherwise it not
Best regards,
Morten