Fayo Report post Posted 08/25/2003 04:09 PM Could you tell me how to evaluate a number entered by a user. I want to evaluate if it is bigger or smaller than. example: "IF number entered >499999 or <600000". Thank you for your help. Share this post Link to post
SupportTeam Report post Posted 08/26/2003 01:26 AM Say caller entered a number in a module titled "AskForNumber" Then in an "Evaulate Expression" module the expression to use would be: ($RV[AskForNumber] > 499999) or ($RV[AskForNumber] < 600000) and then use the "True" and "False" paths to go to other modules.... The "and" operator can also be used, eg: ($RV[AskForNumber] > 499999) and ($RV[AskForNumber] < 600000) Share this post Link to post