# ISNUMBER

The ISNUMBER function returns the logical value TRUE if the value argument is a valid number; otherwise, it returns FALSE.

### Syntax <a href="#syntax" id="syntax"></a>

```excel-formula
isnumber(value)
```

### Arguments <a href="#arguments" id="arguments"></a>

value - cell or reference or expression

### **Return value** <a href="#return-value" id="return-value"></a>

Either True or False

### **Example** <a href="#example" id="example"></a>

```excel-formula
if(isnumber((AC-PY)/PY), (AC-PY)/PY, 0)
```

Returns AC-PY/PY if the value is a number else returns 0

### **Excel equivalent** <a href="#excel-equivalent" id="excel-equivalent"></a>

[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.inforiver.com/editable/formula-and-functions/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.
