[ad_1]
Hello @asjad492
Thank you very much for using our plugin.
This condition structure is incorrect:
else if (40000 < fieldname7 < 250000) {The correct structure is:
else if ( AND(40000 < fieldname7, fieldname7 < 250000 ) ) {The same problem is here:
else if (250000 < fieldname7 < 925000) {The correct is:
else if ( AND( 250000 < fieldname7, fieldname7 < 925000 ) ) {Best regards.
