# ISBLANK

The **ISBLANK** function returns *TRUE* if the specified value is blank or empty. It returns *FALSE* if the value contains any text, number, or expression. It is commonly used with [**IF**](/planning-sheets/formula-syntax/conditional-statements/if-1.md) and other logical functions to validate missing values before performing calculations.

{% hint style="info" %}
The **ISEMPTY** function works similar to **ISBLANK** and can also be used to check for blank or empty values.
{% endhint %}

### Syntax

```javascript
ISBLANK(value)
```

### Arguments

* value - The value to evaluate.&#x20;

### Return value

Returns *TRUE* if the value is blank; otherwise, returns *FALSE*.

### **Example**

<pre class="language-javascript"><code class="lang-javascript"><strong>IF(ISBLANK(2027 Actuals Plan), 0, 2027 Actuals Plan)
</strong></code></pre>

In this example, the **ISBLANK** function checks whether the *2027 Actuals Plan* value is blank. If the condition is *TRUE*, the formula returns *0*; otherwise, it returns the existing value.

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

### **Excel equivalent**

[ISBLANK](https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665), [ISEMPTY](https://support.microsoft.com/en-us/office/isempty-function-a86d5871-f6bd-455c-9256-a69a42e55e50)


---

# 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/isblank.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.
