In the stacktrace you find:
Failed to evaluate expression, error occurred on line 1, character 32
(($Day4_Value)-($Day3_Value)):($Day4/Day-$Day3/Day)
Which means that something went broke by this variable $Day4_Value
The error “Left and right hand side of binary expression should not be empty” is telling you that calculating with an empty value is not possible.
Conclusion
Value of variable $Day4_Value is empty.
Reason of this variable being empty lies somewhere before the action using this expression
Hi Karthik,
As per my understanding, the “($Day4_Value)” is coming empty.
To fix this please put an empty check before the expression.
Regards,
Vipul