Say, I have a field A and B and I want to check is value in A is more than 20% of B. The result of this comparision I wanted to use a a condition for the remaining logic but I am failing to accomplish this task.
It seemed simple as COndition
- A/B: div(float(triggerOutputs()?['var_A']), float(triggerOutputs()?['var_B']))
- is less than div(float(triggerOutputs()?['var_QUOTE']), float(triggerOutputs()?['var_REMVAL'])) *0.2

This hwoever renders the result as:
Unable to process template language expressions for action 'Condition' at line '0' and column '0': 'The template language function 'float' was invoked with a parameter that is not valid. The value cannot be converted to the target type.'.
I have checked if that may be related to decimal sign, but whatever I use DOT or COMA it still does not work.
How to overcome this obstacle?