Excel XOR function is an exclusive OR function. The XOR function returns TRUE if an odd number of logical statements are TRUE and FALSE if an even number of logical statements are TRUE. In the case of two given arguments, the XOR function returns TRUE whenever one argument is TRUE and FALSE whenever both arguments are TRUE or FALSE.
In this article, you’ll get to learn how to use the XOR function with case base examples.
Download Excel Workbook
Excel XOR Function: Syntax and Arguments
⦽ Function Objective:
Performing exclusive OR function
⦽ Syntax:
XOR(logical1, [logical2],…)
⦽ Arguments Explanation:
Arguments | Required/Optional | Explanation |
---|---|---|
logical1 | Required | Any Kind of Logical Expression |
logical2 | Optional | Any Kind of Logical Expression |
⦽ Return Parameter:
TRUE or FALSE, depending on the odd or even number of logical statements being TRUE or FALSE respectively.
⦽ Version:
Excel 2019
5 Suitable Examples to Use the Excel XOR Function
Example 1: XOR Function Compares Two Numbers as Logical
The XOR function in-built takes logical statements that can be TRUE or FALSE. Afterward, the XOR function returns TRUE or FALSE depending on logical statements’ number of TRUE or FALSE.
We can come up with logical status for both values inserted as logical in TRUE or FALSE if one of them is TRUE or both are either TRUE or FALSE.
⧫ Enter the following logical operations with XOR functions in cells (i.e.,C6,C7,C8)
⭆(2>1,0<1)
⭆(2>1,0>1)
⭆(2<1,0>1)
The logical operations are built by comparing two numbers with a condition. If any logical statement satisfies the condition, it returns TRUE otherwise FALSE. Then XOR returns
🔄 FALSE; If both logical statements are TRUE (i.e.,2>1 is TRUE, and 0<1 is TRUE) or FALSE (i.e.,2<1 is FALSE, and 0>1 is FALSE).
🔄 TRUE; If one of the logical statements is TRUE or FALSE (i.e.,2>1 is TRUE, and 0>1 is FALSE).
Read More: How to Use TRUE Function in Excel (With 10 Examples)
Example 2: Using XOR Function to Predict Real-Life Events
The XOR function can predict real-life events considering we give in. Suppose we want basketball match 3 to be held on the basis of prior two matches among four basketball teams.
The conditions we impose are
🔄 Teams won both matches, won’t play the Match 3.
🔄 Teams that won any one match, will play Match 3.
🔄 Teams won none of the matches, won’t play the Match 3.
⧫ Paste the following formula in any adjacent cell (i.e., E6).
=IF(XOR(C6="Won",D6="Won"),"YES","NO")
Inside the formula,
The XOR function returns FALSE if both cell references match (i.e., Won and Won) or not (i.e., Lost and Lost) otherwise TRUE. Then IF shows “NO” or “YES” in case of FALSE or TRUE XOR passing respectively.
⧫ Hit ENTER and Drag the Fill Handle to bring out other outcomes regarding our imposed conditions.
Now, we can cross-check the outcomes by comparing them with imposed conditions. We find any teams that lose one match will play match 3 otherwise won’t and this scenario matches with imposed conditions.
Similar Readings:
Example 3: Comparing Two Logicals
The XOR function consists of built-in logicals. In this case, we discuss what if we have two given logical outputs in TRUE or FALSE and XOR has to decide what will be the resultant statement TRUE or FALSE?
⧫ Type the below formula in any adjacent cell (i.e.,D6)
=XOR(B6,C6)
XOR assigns B6 and C6 as logicals.
⧫ Press ENTER then Drag the Fill Handle. Any single TRUE or FALSE logicals results in TRUE otherwise FALSE as shown in the following picture.
Read More: How to Use FALSE Function in Excel (With 5 Easy Examples)
Example 4: Comparing Multiple Logicals
To demonstrate XOR’s other characteristics, we take multiple logical statements. Then use the XOR to produce outcomes depending on the logicals.
As we mentioned earlier, XOR results TRUE if there is an odd number of TRUE logicals otherwise FALSE.
⧫ Write down the following formula in any blank cells (i.e., G6).
=XOR(B6:F6)
⧫ Hit ENTER and Drag the Fill Handle. You’ll see an odd number (i.e., 1,3,5) of logicals resulting in TRUE causes XOR function to evaluate them as TRUE otherwise FALSE.
Example 5: Customizing Return Value Depending on Duplicates
Let’s say, in an office, we have employees who enter or exit the office at any time. Now, we want to check if any employees are In or Out of the office depending on name entries.
⧫ Paste the below formula in any adjacent cell (i.e., D6).
=IF(XOR(B6=B$6:B6),"In","Out")
Inside the formula B6=B$6:B6 returns TRUE if the entry in B6 matches with the entry ranges from B6 to B6. Any even or double occurrence of any employee names results in FALSE.
Then IF returns “In” in case of a single occurrence or “Out” in case of double or duplicate occurrence of any names.
⧫ Press ENTER then Drag the Fill Handle. The formula labels “Out” to the duplicates among the entries.
⧭ Things to Keep in Mind
🔼 XOR results #VALUE if it finds no logical values.
🔼 The XOR function was first introduced in 2013.
🔼 The logical statements must result in TRUE (i.e.,1) or FALSE (i.e.,0) otherwise refer to anything containing the logical value.
🔼 XOR ignores blank cells and can be used as an array formula.
Conclusion
I hope the above-described uses of the XOR function intrigue you to use the function more efficiently. If you have further queries or feedback, please let me know in the comment section. You can check out my other articles on the Exceldemy website.