Jump to content

OR statement help


Recommended Posts

  • Moderators

Few different ways of doing it...

Switch $myIP
    Case "10.16", "10.17", "10.18", "10.19", "10.20"
        $loc = "SNO"
    Case Else
        ; Do something else
EndSwitch


If $myIP = "10.16" Or $myIP = "10.17" Or $myIP = "10.18" Or $myIP = "10.19" Or $myIP = "10.20" Then
    $loc = "SNO"
EndIf


$myIP = Number($myIP)
If $myIP >= 10.16 And $myIP <= 10.20 Then
    $loc = "SNO"
EndIf
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...