BINIOR can be used to set specific bits. BINIOR(A,B) converts the values of A and B to integers. The integer values of A and B are then treated as unsigned binary numbers. Each bit of the result is set to 1 if the corresponding bit of either or both A or B is 1, and 0 if the corresponding bits of both A and B are 0. An example of BINIOR is:
BINIOR(12,6)
The numbers 12 and 6 are considered binary numbers, then the bitwise OR is performed.