I hope most those who might answer this know what an exclusive OR is but just in case, here is a simple example...
A1 can be True or False
B1 can be True or False
C1 contains the exclusive OR function of A1/B1
So if...
A1=False, B1=False, then C1 = False
A1=False, B1=True, then C1 = True
A1=True, B1=False, then C1 = True
A1=True, B1=True, then C1 = False
Any ideas for the function that goes in C1? I can't find a built in function for this.
A1 can be True or False
B1 can be True or False
C1 contains the exclusive OR function of A1/B1
So if...
A1=False, B1=False, then C1 = False
A1=False, B1=True, then C1 = True
A1=True, B1=False, then C1 = True
A1=True, B1=True, then C1 = False
Any ideas for the function that goes in C1? I can't find a built in function for this.