Borje Posted August 11, 2009 Posted August 11, 2009 What is wrong with this, I can not have this to work as I want in my example: If that are Sunday and date is 13 i want this was true between 13 to 21 Please can anyone help me ! Code: If @WDAY = 1 and @MDAY >= 13 and @MDAY <=21 Then ;do what you need to for YES Else ;do what you need for NO EndIf
picaxe Posted August 11, 2009 Posted August 11, 2009 TryIf @WDAY = 1 Then Switch @MDAY Case 13 To 21 ;do what you need to for YES Case Else ;do what you need for NO EndSwitch EndIf
Borje Posted August 11, 2009 Author Posted August 11, 2009 Thank you so much piaxe that works exactly that I want Thanks again.. TryIf @WDAY = 1 Then Switch @MDAY Case 13 To 21 ;do what you need to for YES Case Else ;do what you need for NO EndSwitch EndIf
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now