# XOR

The **XOR** (Exclusive OR) function returns TRUE if exactly one or an odd number of the specified conditions is TRUE. Otherwise, it returns FALSE. It is commonly used with IF and other logical functions to evaluate mutually exclusive conditions.

### Syntax

```javascript
XOR(logical_test1,[logical_test2], ... )
```

### Arguments

logical\_test1 - The first condition to evaluate. Required.

logical\_test2, ... - Additional conditions to evaluate. Optional.

### **Return value**

Either TRUE or FALSE.

### **Example**

```javascript
IF(XOR([Region]=="United States",[Category]=="Beverages"),30500000,0)
```

In this example, values are assigned to the *2027 Plan* using the **XOR** function within an [IF](/formula-syntax/conditional-statements/if.md) statement. The formula returns 30.5m when either the *Region* is 'United States' or the C*ategory* is 'Beverages', but not both. It returns 0 if both conditions are TRUE or both are FALSE.

<figure><img src="/files/fhiA6OWHXvI8DLAZnQcs" alt=""><figcaption><p>Applying XOR function</p></figcaption></figure>

### **Excel equivalent**

[XOR](https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.inforiver.com/formula-syntax/logical-functions/xor.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
