[]
        
(Showing Draft Content)

BITXOR

This function returns bitwise XOR of the two specified numbers.

Syntax

BITXOR(value1, value2)

Arguments

This function has these arguments:

Argument

Description

value1

[Required] First decimal number greater than or equal to 0

value2

[Required] Second decimal number greater than or equal to 0

Remarks

In this function, if value of any parameter's bits at same position is not equal only then the value of each bit position is counted.

Examples

BITXOR(6,2) gives the result 4.

BITXOR(8,3) gives the result 11.