XOR in Excel
XOR in Excel
(OP)
Hi,
Do someone know if it is possible add the function XOR in Excel DIRECTLY (without the XOR=OR-AND method)?
Thank you,
Guglielmo
090764@tin.it
Do someone know if it is possible add the function XOR in Excel DIRECTLY (without the XOR=OR-AND method)?
Thank you,
Guglielmo
090764@tin.it
RE: XOR in Excel
Function MyXor(MyInput1 As Variant, MyInput2 As Variant)
MyXor = MyInput1 Xor MyInput2
End Function
of course, the way I've written it there, it will only accept 2 inputs.