Core Excel Functions Flashcards

Excel functions used in CORe

1
Q

A random integer between 0 and 1

A

=RAND()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Find the Median of an array

A

=MEDIAN(number1, number 2, …)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Find the corresponding x-value on a normal distribution for the specified mean, standard deviation, and cumulative probability

A

=NORM.INV(probability, mean, standard_dev)

- Returns the corresponding x value on a normal distribution for the specified mean, dev, and cumulative probability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Find the cumulative probability of being less than or equal to a specified z value for normal distribution

A

=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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Count number of rows in an array

A

=COUNT(value 1, value 2, …)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Making dummy variables

A

=IF(statement, true, false)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Find Square Root

A

=SQRT(number)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Find the Mode of an array (HBS style)

A

=MODE.SNGL(nubmer 1, number 2, …)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Find Minimum of array

A

=MIN(number 1, number 2, …)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Find the Sum

A

=SUM(number 1, number 2, …)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Correlation Coefficient

A

=CORREL(array 1, array 2, …)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Calculating the range of likely sample means

A

=CONFIDENCE.NORM or =CONFIDENCE.T

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Finding the Conditional Mean, or average of the cells in a specified range that meet a given criterion.

A

=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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Find Maximum of an array

A

=MAX(number 1, number 2, …)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The variance of a sample

A

=VAR.S(number 1, number 2, …)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Find the margin of error using a normal distribution at a specific confidence level

A

=CONFIDENCE.NORM(alpha, standard_dev, size)

- alpha: is the significance level, which is equal to one minus the confidence level.

17
Q

Find the Mean of an array

A

=AVERAGE( number 1, number 2, …)

18
Q

Find percentile

A

=PERCENTILE.INC(array, k)
- Returns the k-th percentile of value in the specified array. For example, if we want to know the 95th percentile for an array of data, k would be 0.95.

19
Q

Cumulative normal distribution given a certain value of x

A

=NORM.DIST(x, mean, standard_dev, cumulative)
- When cumulative is set to TRUE, the function returns the cumulative probability, that is, the probability of being less than or equal to the specialized value x, for a normal distribution with the specified mean and standard deviation.

20
Q

The P-value associated with a given t-test

A

=T.TEST(array 1, array 2, tails, type)
- Array 1: set of numerical values or cell references
-Array 2: set of numerical values or cell references. If we only have one set of data, for the second data set we create a column for which every entry is the historical mean.
-Tails: the number of tails in the distribution. IT should be set to 1 to perform a one-sided test; to 2 to perform a two-side test.
Type: can be 1, 2, 3
1: paired test. used when the same group is tested twice to provide a before and after data for each member of a group
2: unpaired test in which the samples are assumed to have equal variances
3: unpaired test in which samples are assumed to have unequal variances. Unless we have a good reason to believe two samples have equal variances, we typically use 3 when conducting an unpaired test.

21
Q

Find the margin of error using a t-distribution

A

=CONFIDENCE.T(alpha, standard_dev, size)

-returns the margin of error using a t-distribution for a specified alpha, standard deviation, and size.

22
Q

Standard Deviation of a sample

A

=STEV.S(number1, number 2, …)