Oct 9th, 2000, 04:11 AM
Hi there, I'm trying to make a sub function accessible only if multiple conditions are met. If I only use multiple AND's or multiple OR's at once it works fine but when I try to combine them it won't work. I wonder if I'm using the correct syntax. This is what I tried:
If (selected="Monday") And (id="A1" OR id="A2") then
{do certain things}
End If
Looks like I can't use the brackets but how else can it be done? Please send your suggestions.
Thank you for your time.
If (selected="Monday") And (id="A1" OR id="A2") then
{do certain things}
End If
Looks like I can't use the brackets but how else can it be done? Please send your suggestions.
Thank you for your time.