You are not logged in.

#1 23 Mar 2017 12:51

NDog
Member
From: New Zealand
Registered: 31 May 2006
Posts: 121
Website

How do you do if AND if then statement?

This has me stumped

If condition and condition do s/t
otherwise
if not condition or not condition do s/t

If ComputerName <> "LHSTS" And If ComputerName <> "LHSTS01" Then '~~ Skip Terminal Server machine information ~~
  ' do stuff
End If

Never works the way I want it to

Last edited by NDog (23 Mar 2017 12:55)


cmd, vbs, ps, bash
autoit, python, swift

Offline

#2 23 Mar 2017 17:19

Simon Sheppard
Admin
Registered: 27 Aug 2005
Posts: 1,130
Website

Re: How do you do if AND if then statement?

You don't need multiple nested IF's... just build an expression with AND, OR, NOT and brackets
things like this are valid:

If (3 > 2) and (4 > 3 or 2 = 3) Then...

Offline

Board footer

Powered by