# NORMSINV

The **NORMSINV** function returns the inverse of the standard normal cumulative distribution. It assumes a distribution with a mean of 0 and a standard deviation of 1.&#x20;

### Syntax

<pre class="language-javascript"><code class="lang-javascript"><strong>NORMSINV(probability)
</strong></code></pre>

### Arguments

The **NORMSINV** function syntax has the following required arguments:

* probability - A probability corresponding to the normal distribution. Required.

### Example

<pre class="language-javascript"><code class="lang-javascript"><strong>NORMSINV(0.90)
</strong>// Returns 1.28
</code></pre>

You can use the **NORMSINV** function to determine the number of standard deviations a value is from the mean. This is particularly useful for creating standardized benchmarks or z-scores across different datasets to compare them on a level playing field.

<figure><img src="/files/37Dm2anf3oDMr3Ifzasm" alt=""><figcaption><p>NORMSINV function</p></figcaption></figure>

### Excel Equivalent

[NORMSINV](https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d)

### FAQs

**Q1. What is the difference between NORMINV and NORMSINV?**

* [NORMINV](/planning-sheets/formula-syntax/statistical-functions/norminv.md) allows you to specify any mean and standard deviation for your dataset.&#x20;
* NORMSINV is a specialized version that always uses a mean of 0 and a standard deviation of 1.


---

# 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/statistical-functions/normsinv.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.
