[***URGENT***】 All the Operator are not working

0
Hi, Nice to meet you all of you! Well, We face the big problem. Today, We deploy our first mendix project for the first time. BUT We face the errors that ' >( ,) is not supported  Including +,-, >, <, <= and so on. All the operator is not working It perfectly works on local env..... HELP
asked
1 answers
0

Are you sure that &Count has always a value. This could be the issue when $Count is a 'null' and then you try to make an operation on that. Try to verify if $Count is not a null before using any operator for instance:

if $Count = empty

then

false

else

$Count > 0

answered