Core Excel Functions Flashcards
Excel functions used in CORe
A random integer between 0 and 1
=RAND()
Find the Median of an array
=MEDIAN(number1, number 2, …)
Find the corresponding x-value on a normal distribution for the specified mean, standard deviation, and cumulative probability
=NORM.INV(probability, mean, standard_dev)
- Returns the corresponding x value on a normal distribution for the specified mean, dev, and cumulative probability.
Find the cumulative probability of being less than or equal to a specified z value for normal distribution
=NORM.S.DIST(z, cumulative)
- When cumulative is set to “TRUE”, the function returns the probability of being less than or equal to the z value
Count number of rows in an array
=COUNT(value 1, value 2, …)
Making dummy variables
=IF(statement, true, false)
Find Square Root
=SQRT(number)
Find the Mode of an array (HBS style)
=MODE.SNGL(nubmer 1, number 2, …)
Find Minimum of array
=MIN(number 1, number 2, …)
Find the Sum
=SUM(number 1, number 2, …)
Correlation Coefficient
=CORREL(array 1, array 2, …)
Calculating the range of likely sample means
=CONFIDENCE.NORM or =CONFIDENCE.T
Finding the Conditional Mean, or average of the cells in a specified range that meet a given criterion.
=AVERAGEIF(range, criteria, [aveage_range])
- Range: contains the one or more cells to which we wish to apply the criteria or condition.
- Criteria: the condition that is to be applied to the range.
Find Maximum of an array
=MAX(number 1, number 2, …)
The variance of a sample
=VAR.S(number 1, number 2, …)