The ALL function accepts two numbers and returns a TRUE if all of the bits that are set in the second number are also set in the first number.
The ALL function has the following format:
ALL(number1, number2)
The ALL function accepts the following parameters:
number1 (number)
number2 (number)
The ALL function returns a Boolean value.
Return_value=ALL(7, 2)
Return_value=TRUE
Return_value=ALL(7, 15)
Return_value=FALSE
Copyright © 2010 CA. All rights reserved. | Email CA about this topic |