---
title: NOT
url: https://www.tines.com/docs/formulas/functions/not/
kind: formula-function
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/llms.txt) › [Formulas](https://www.tines.com/llm/docs/formulas.md) › [Functions](https://www.tines.com/llm/docs/formulas/functions.md)*

# NOT

*[View on tines.com](https://www.tines.com/docs/formulas/functions/not/)*

Returns the logical opposite of the supplied param.

**Categories:** Logic

## Syntax

```
NOT(any)
```

## Examples

### Example 1

Input:

```json
{
  "my_action": {
    "value": 5
  }
}
```

Formula:

```
NOT(my_action.value>100)
```

Output:

```json
true
```

### Example 2

Input:

```json
{
  "my_action": {
    "value": 5
  }
}
```

Formula:

```
NOT(my_action.value<100)
```

Output:

```json
false
```

## Sample actions

```json
{
  "standardLibVersion": "13",
  "actionRuntimeVersion": "1",
  "agents": [
    {
      "disabled": false,
      "name": "My Action",
      "description": "",
      "options": {
        "mode": "message_only",
        "loop": false,
        "payload": {
          "value": 5
        }
      },
      "position": {
        "x": -150,
        "y": 2205
      },
      "type": "eventTransformation",
      "timeSavedUnit": "minutes",
      "timeSavedValue": 0,
      "monitorAllEvents": false,
      "monitorFailures": false,
      "monitorNoEventsEmitted": null,
      "form": null
    },
    {
      "disabled": false,
      "name": "NOT",
      "description": "",
      "options": {
        "mode": "message_only",
        "loop": false,
        "payload": {
          "not": "=NOT(my_action.value>100)"
        }
      },
      "position": {
        "x": -225,
        "y": 2280
      },
      "type": "eventTransformation",
      "timeSavedUnit": "minutes",
      "timeSavedValue": 0,
      "monitorAllEvents": false,
      "monitorFailures": false,
      "monitorNoEventsEmitted": null,
      "form": null
    },
    {
      "disabled": false,
      "name": "NOT",
      "description": "",
      "options": {
        "mode": "message_only",
        "loop": false,
        "payload": {
          "not": "=NOT(my_action.value<100)"
        }
      },
      "position": {
        "x": -60,
        "y": 2280
      },
      "type": "eventTransformation",
      "timeSavedUnit": "minutes",
      "timeSavedValue": 0,
      "monitorAllEvents": false,
      "monitorFailures": false,
      "monitorNoEventsEmitted": null,
      "form": null
    }
  ],
  "links": [
    {
      "sourceIdentifier": 0,
      "receiverIdentifier": 1
    },
    {
      "sourceIdentifier": 0,
      "receiverIdentifier": 2
    }
  ],
  "diagramNotes": []
}
```
