I have a complex NCALC if expression which goes something like this:
if ( {0} == null || {1} == 0 ,{2} * ({3} * {4} + {5}), ({2} * ({3} * {4} + {5}))/{1})
This gives me some unexpected error such as below:
missing ')' at '==' at line 1:6
missing EOF at 'UnsetValue' at line 1:37
What the issue here- i couldnt find if NCALC supports null. if it does, then what could be wrong in the above expression. Kindly help!!