Forum Discussion
sbkeenan
12 years agoFrequent Contributor
Hi Jeetendra
It looks like you're using VBScript, in which case something like this should work:
You should be aware, however, that VBScript doesn't support they short circuiting functionality of other languages, so you may want to do the following:
Regards
Stephen
It looks like you're using VBScript, in which case something like this should work:
if a = b and _
c = d and _
e = f _
then
'your code here
end if
You should be aware, however, that VBScript doesn't support they short circuiting functionality of other languages, so you may want to do the following:
if a = b then
if c = d then
if e = f then
'your code here
end if
end if
end if
Regards
Stephen