Answers for "vbscript not equal"

VBA
0

operators vbscript

'VBScript Arithmetic Operators
+ (addition)
- (subtraction)
* (multiplication)
/ (division)
% (modulus)
^ (exponentiation)
& (concatenation)

'VBScript Comparison Operators
a==b  will return false.
a<>b will return true.
a<b will return true.
a>b will return false.
a<=b will return true.
a>=b will return false.

'VBScript Logical operators: AND, OR
x AND y  will return false.
x OR y will return true.
NOT(x OR y) will return false.	
x XOR y will return true.
Posted by: Guest on January-15-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language