# IF

The **IF** function returns one value if a condition is true and another value if it is false.

### Syntax

```javascript
IF( logical_test, value_if_true, value_if_false )
```

### Arguments

* *logical\_test*: The condition to evaluate.
* *value\_if\_true*: The value returned if the condition is true.
* *value\_if\_false*: The value returned if the condition is false.

### Return value

Returns either *value\_if\_true* or *value\_if\_false* based on the result of the condition.

### Example

```javascript
IF(PY > 0, (AC - PY) / PY, 0)
```

Returns *`(AC - PY) / PY`* if *PY* is greater than 0; otherwise, returns 0.

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

### Excel equivalent

[IF](https://support.microsoft.com/en-us/office/if-function-69aed7c9-4e8a-4755-a9bc-aa8bbff73be2)


---

# 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/conditional-statements/if-1.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.
