BITXOR Function

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)

Parameters

Name

Required/Optional

Data Type

Description

binary number1

Required

Numeric

The first 16-bit binary number.

binary number2

Required

Numeric

The second 16-bit binary number.

Return Value

16-bit Binary

Example

BITXOR(12,6)

Returns 10. The 12 = 0...01100. The 6 = 0...00110. Therefore, BITXOR(12,6) = 0...01010.