# NORMSDIST

The **NORMSDIST** function returns the standard normal distribution for a given value. It is a specific case of the normal distribution where the mean is 0 and the standard deviation is 1. It is used to determine the probability that a random variable falls at or below a specific point on the standard normal curve.

### Syntax

<pre class="language-javascript"><code class="lang-javascript"><strong>NORMSDIST(value, cumulative)
</strong></code></pre>

### Arguments

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

* value - The numeric value for which you want to calculate the distribution. Required.
* cumulative - A logical value that determines the form of the function. If TRUE, it returns the cumulative distribution function; if FALSE, it returns the probability density function. Required.

### Example

<pre class="language-javascript"><code class="lang-javascript"><strong>NORMSDIST(1, true)
</strong>// Returns 0.8413
</code></pre>

You can use the **NORMSDIST** function to analyze standardized data and determine the percentile or probability of a specific outcome occurring within a standard bell curve.

<figure><img src="/files/w2rVyiQFAcQafy8j2f6k" alt=""><figcaption><p>NORMSDIST function</p></figcaption></figure>

### Excel Equivalent

[NORMSDIST](https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac)

### FAQs

**Q1. What is the difference between the cumulative distribution function (CDF) and the probability density function (PDF)?**

* The CDF (cumulative = TRUE) calculates the total area under the curve to the left of x, representing the probability that a value is less than or equal to x.&#x20;
* The PDF (cumulative = FALSE) calculates the height of the curve at a specific point x, which describes the relative likelihood of the variable taking that exact value.


---

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