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