PAPER 1 of notes Flashcards

1
Q

Find average

A

=Average(Range)

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

Average if more than one criteria

A

=Averageifs(averagerange;range1;criteria1…)

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

Sum with more than one criteria

A

=sumifs(Sumrange;range1;criteria1;range…)

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

calculate the mean taken by excluding a percentage of data points from the top and bottom tails of a data set

A

=trimmean(range;percentage)

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

calculate standard deviation

A

=STDEV.P(range)

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

median?

A

=median(range)

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

finding quartile

A

=quartile.inc(range;quartile)

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

the k-th percentile of values in a range, inclusive

A

=percentile.inc(range;percentage)

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

the most frequently occurring number in a numeric data set.

A

=Mode.SNGL(range)

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

correlation

A

=correl(range1;range2)

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

a numeric value based on its position in a list when sorted by value in ascending order.

A

=SMALL(range;rank)

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

find a particular number in a range

A

=LARGE(range;rank)

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

extracts a specified number of characters from the beginning of a text string.

A

=LEFT(text;nmbrofcharacters)

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

retrieve a chosen amount of characters, counting from the right side of an Excel cell

A

=RIGHT(text;nmbrofcharacters)

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

designed to pull a substring from the middle of the original text string.

A

=MID(text;start position; nmbr of characters)

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

Number of characters

A

=LEN(text)

17
Q

find what return the position of a specific character or substring within a text string.

A

=FIND(character;text;startposition)

18
Q

putting text in uppercase

A

=UPPER(text)

19
Q

putting text in lowercase

A

=LOWER(text)

20
Q

first letter in uppercase and the rest in lower case

A

=PROPER(text)

21
Q

removing all of the spaces in a text except for single space between words

A

=TRIM(text)