# NOT

A NOT statement reverses the value of the condition. For example, it returns TRUE if the condition is FALSE and FALSE if the condition is TRUE.

### Syntax

NOT(logical\_test)

### Arguments

<table><thead><tr><th width="147">Argument</th><th width="212">Data type</th><th>Description</th></tr></thead><tbody><tr><td>logical_test</td><td>Node reference, Formula</td><td>The condition to be evaluated</td></tr></tbody></table>

### Return Value

Either True or False.

### Example

Consider the below scenario in which an employee is eligible for Sales Bonus if Total Sales is greater than the Sales Goal. Sales Bonus is calculated as the product of Bonus% and Total Sales.

<figure><img src="/files/CiQSLHh7EPcIdawWGX2p" alt=""><figcaption></figcaption></figure>

To achieve this, the following formula should be written on the \[Sales Bonus] node:

<mark style="color:blue;">**`IF`**</mark>**`(`**<mark style="color:blue;">**`NOT`**</mark>**`(`**<mark style="color:purple;">**`[Total Sales]`**</mark>**`>`**<mark style="color:orange;">**`[Sales Goal]`**</mark>**`),0,`**<mark style="color:red;">**`[Bonus %]`**</mark>**`*`**<mark style="color:purple;">**`[Total Sales]`**</mark>**`)`**

### Result

Here, the condition Total Sales > Sales Goal is TRUE for Jan, but NOT function negates it and returns FALSE. Hence the argument value for FALSE condition which is "Bonus% \* Total Sales" is calculated. For all TRUE condition, its matching argument 0 is the result.

<figure><img src="/files/IDkVpXEknxmI3hbRBKsd" alt=""><figcaption></figcaption></figure>


---

# 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.valq.com/model/formula-functions/logical-functions/not.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.
