# 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**](/planning-sheets/formula-syntax/conditional-statements/if-1.md) and other logical functions to evaluate mutually exclusive conditions.

### Syntax

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

### Arguments

* *logical\_test1*: The first condition to evaluate.
* *logical\_test2, ...* (Optional): Additional conditions to evaluate.

### Return value

Returns *TRUE* if an odd number of conditions are *TRUE*; otherwise, returns *FALSE*.

### **Example**

<pre class="language-javascript"><code class="lang-javascript"><strong>IF(XOR(Sub Region == "APAC", Sub Category == "Juices"), 52640000, 0)
</strong></code></pre>

In this example, the **XOR** function is used within an [**IF**](/planning-sheets/formula-syntax/conditional-statements/if-1.md) statement to assign values to the *2027 Actuals Plan*. The function evaluates whether only one of the conditions is *TRUE*: *Sub Region* is *APAC* or *Sub Category* is Juices. If exactly one condition is *TRUE*, the formula returns *52.64 million*; otherwise, it returns *0*.

<figure><img src="/files/xqgwL6gYZXFCek8cIy9V" alt=""><figcaption></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.fabricplan.com/planning-sheets/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.
