> For the complete documentation index, see [llms.txt](https://docs.valq.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.valq.com/model/formula-functions/logical-functions/not.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.valq.com/model/formula-functions/logical-functions/not.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
