Calculates the inverse normal distribution for a specific probability to determine the corresponding value based on a given mean and standard deviation.
The NORMINV function calculates the inverse of the normal cumulative distribution for a specified mean and standard deviation. It allows you to work backward from a given probability to find the corresponding value on the normal distribution curve.
NORMINV(probability, mean, std_dev)
The NORMINV function syntax has the following required arguments:
NORMINV(0.90, 50, 5)
// Returns 56.41
You can use the NORMINV function to determine critical values or thresholds, such as calculating the specific score required to be in the top 10% of a dataset or finding the target level needed to meet a certain probability.

NORMINV function
Q1. What is the relationship between NORMDIST and NORMINV?