The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi all,
Any help on this function NORM.DIST would be helpful for me to understand one of my project need.
Thanks,
-Arul
Solved! Go to Solution.
Hi @Arul ,
It can establish a contrast relationship between the data frequency distribution histogram and the normal distribution data determined by the average value and standard deviation of the data. Figure shows the frequency histogram of the data. The curve is a normal distribution curve determined by the average and standard deviation of the data. In this way, we can know the quality of the data.
NORM.DIST returns the normal distribution for the specified mean and standard deviation.
Syntax:
NORM.DIST(X, Mean, Standard_dev, Cumulative)
X: The value for which you want the distribution.
Mean: The arithmetic mean of the distribution.
Standard_dev: The standard deviation of the distribution.
Cumulative*: A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.
NORM.DIST function - Office Support (microsoft.com)
NORM.DIST function (DAX) - DAX | Microsoft Docs
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Arul ,
It can establish a contrast relationship between the data frequency distribution histogram and the normal distribution data determined by the average value and standard deviation of the data. Figure shows the frequency histogram of the data. The curve is a normal distribution curve determined by the average and standard deviation of the data. In this way, we can know the quality of the data.
NORM.DIST returns the normal distribution for the specified mean and standard deviation.
Syntax:
NORM.DIST(X, Mean, Standard_dev, Cumulative)
X: The value for which you want the distribution.
Mean: The arithmetic mean of the distribution.
Standard_dev: The standard deviation of the distribution.
Cumulative*: A logical value that determines the form of the function. If cumulative is TRUE, NORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.
NORM.DIST function - Office Support (microsoft.com)
NORM.DIST function (DAX) - DAX | Microsoft Docs
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.