---
title: IS_BLANK
url: https://www.tines.com/docs/formulas/functions/is-blank/
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)*

# IS_BLANK

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

Returns true if a value is falsy ie. `FALSE`, `""`, `[]`, `{}`, `NULL`, and false otherwise. [`IS_PRESENT`](https://www.tines.com/docs/formulas/functions/is-blank) is the opposite of this. See also [`IS_EMPTY`](https://www.tines.com/docs/formulas/functions/is-empty).

**Categories:** Text, Objects, Arrays, Logic, Numbers

## Syntax

```
IS_BLANK(any)
```

## Examples

### Example 1

Input:

```json
{
  "my_action": {
    "value1": ""
  }
}
```

Formula:

```
IS_BLANK(my_action.value1)
```

Output:

```json
{
  "value1": true
}
```

### Example 2

Input:

```json
{
  "my_action": {
    "value2": false
  }
}
```

Formula:

```
IS_BLANK(my_action.value2)
```

Output:

```json
{
  "value2": true
}
```

### Example 3

Input:

```json
{
  "my_action": {
    "value3": []
  }
}
```

Formula:

```
IS_BLANK(my_action.value3)
```

Output:

```json
{
  "value3": true
}
```

### Example 4

Input:

```json
{
  "my_action": {
    "value4": {}
  }
}
```

Formula:

```
IS_BLANK(my_action.value4)
```

Output:

```json
{
  "value4": true
}
```

### Example 5

Input:

```json
{
  "my_action": {
    "value5": null
  }
}
```

Formula:

```
IS_BLANK(my_action.value5)
```

Output:

```json
{
  "value5": true
}
```

### Example 6

Input:

```json
{
  "my_action": {
    "value6": "Hello World"
  }
}
```

Formula:

```
IS_BLANK(my_action.value6)
```

Output:

```json
{
  "value6": false
}
```

### Example 7

Input:

```json
{
  "my_action": {
    "value7": 1
  }
}
```

Formula:

```
IS_BLANK(my_action.value7)
```

Output:

```json
{
  "value7": false
}
```

## Sample actions

```json
{
  "standardLibVersion": "13",
  "actionRuntimeVersion": "1",
  "agents": [
    {
      "disabled": false,
      "name": "My Action",
      "description": "",
      "options": {
        "mode": "message_only",
        "loop": false,
        "payload": {
          "value1": "",
          "value2": false,
          "value3": [],
          "value4": {},
          "value5": null,
          "value6": "Hello World",
          "value7": 1
        }
      },
      "position": {
        "x": 165,
        "y": 2205
      },
      "type": "eventTransformation",
      "timeSavedUnit": "minutes",
      "timeSavedValue": 0,
      "monitorAllEvents": false,
      "monitorFailures": false,
      "monitorNoEventsEmitted": null,
      "form": null
    },
    {
      "disabled": false,
      "name": "IS_BLANK",
      "description": "",
      "options": {
        "mode": "message_only",
        "loop": false,
        "payload": {
          "value1": "=IS_BLANK(my_action.value1)",
          "value2": "=IS_BLANK(my_action.value2)",
          "value3": "=IS_BLANK(my_action.value3)",
          "value4": "=IS_BLANK(my_action.value4)",
          "value5": "=IS_BLANK(my_action.value5)",
          "value6": "=IS_BLANK(my_action.value6)",
          "value7": "=IS_BLANK(my_action.value7)"
        }
      },
      "position": {
        "x": 165,
        "y": 2295
      },
      "type": "eventTransformation",
      "timeSavedUnit": "minutes",
      "timeSavedValue": 0,
      "monitorAllEvents": false,
      "monitorFailures": false,
      "monitorNoEventsEmitted": null,
      "form": null
    }
  ],
  "links": [
    {
      "sourceIdentifier": 0,
      "receiverIdentifier": 1
    }
  ],
  "diagramNotes": []
}
```
