Main page / Useful info about ShapeSheet™ / Visio ShapeSheet reference / ShapeSheet™. List of functions by category
ShapeSheet. Category Logic functions
|
Name |
Details |
AND Version Added: Pre 2003 |
Returns TRUE (1) if all of the logical expressions supplied are TRUE. If any of the logical expressions are FALSE or 0, the AND function returns FALSE (0). Syntax AND(logical expression1,logical expression2,...,logical expressionN) |
BITAND Version Added: Pre 2003 |
Returns a 16-bit binary number in which each bit is set to 1 only if the corresponding bit in both binarynumber1 and binarynumber2 is 1. Otherwise, the bit is set to 0. Syntax BITAND(binarynumber1,binarynumber2) |
BITNOT Version Added: Pre 2003 |
Returns a 16-bit binary number in which each bit is set to 1 only if the corresponding bit in binary number is 0. Otherwise, the bit is set to 0. Syntax BITNOT(binary number) |
BITOR Version Added: Pre 2003 |
Returns a 16-bit binary number in which each bit is set to 1 if the corresponding bit in either binary number1 or binary number2 is 1. The bit is set to 0 only if the corresponding bit is 0 in both binary number1 and binary number2. Syntax BITOR(binary number1,binary number2) |
BITXOR Version Added: Pre 2003 |
Returns a 16-bit binary number in which each bit is set to 1 if the corresponding bit in either but not both binary number1 and binary number2 is 1. Otherwise, the bit is set to 0. Syntax BITXOR(binary number1,binary number2) |
NOT Version Added: Pre 2003 |
Returns TRUE (1) if logicalexpression is FALSE. Otherwise, it returns FALSE (0). Syntax NOT(logicalexpression) |
OR Version Added: Pre 2003 |
Returns TRUE (1) if any of the logical expressions passed as parameters are TRUE. Syntax OR(logicalexpression1,logicalexpression2,...,logicalexpressionN) |