# ISNUMBER

The **ISNUMBER** function returns *TRUE* if the specified value is a valid number. It returns *FALSE* if the value is not numeric. It is commonly used with *IF* and other conditional functions to validate numeric inputs before performing calculations.

### Syntax

```javascript
ISNUMBER(value)
```

### Arguments

* value - The value to evaluate.

### Return value

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

### **Example**

<pre class="language-javascript"><code class="lang-javascript"><strong>IF(ISNUMBER(2026 Actuals), 2026 Actuals*1.05, "Not a number")
</strong></code></pre>

In this example, the **ISNUMBER** function checks whether *2026 Actuals* contains a numeric value. If the condition is *TRUE*, the formula applies a 5% increase to the value; otherwise, it returns '*Not a number'*.

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

### **Excel equivalent**

[ISNUMBER](https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665)


---

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