VoiceGuide IVR Software Main Page
Jump to content

If Number Entered Bigger Or Smaller Than.

Recommended Posts

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×