Exam 1 Review Flashcards

1
Q

Function
Use: the names listed on tabs of the worksheet

A

Worksheet Names

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

They do not need to be listed in the formula referencing cells within the same worksheet. They are needed when referencing cells in different worksheets

A

Worksheet Names

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

What must the worksheet be encased in when they include one or more spaces

A

’ ‘ and include ! after
=’Worksheet Name’!Cells

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

Function
Use: Formulas should be set up in such a way as to make creating formulas easy so they can be copied instead of having to be rewritten over and over

A

Cell Referencing

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

Cell with the information

A

Cell Referencing

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

A2

A

Single cell reference

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

A2:A9

A

Range along a column

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

A2:H2

A

Range along a row

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

A:A

A

Range along the entire column

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

A2:C8

A

Block Range

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

$ locks the referenced item preventing it from changing

A

Mixed Cell Reference

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

$A2

A

Locks the Column
Mixed Cell Reference

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

A$2

A

Locks the row
Mixed Cell Reference

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

Exact Cell

A

Absolute Cell Reference

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

$A$2

A

Locks the column and row
Absolute Cell Reference

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

Function
Use: Use a name for cell reference. Treated as an absolute cell reference

A

Named Ranges

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

Best to use when complex and/or long cell references. Also, helps with remembering the purpose of the formula

A

Named Ranges

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

Sales Tax instead of “A2*1.075”

A

Named Ranges

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

Function
Use: Pre- determine if you want __ ___ to be included in your calculation

A

Blank Cells

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

Included: Fill with 0 (zero)
Excluded: Leave Blank

A

Blank Cells

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

Syntax
Use: when using text items in cell references

A

Text

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

For Text what words do we not need to put quotes are

A

AND, OR, NOT, TRUE, FALSE

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

Syntax
Use: Cell references larger than

A

Greater Than

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

What 3 functions can be used for Greater Than

A

Sumif(s), Countif(s), and Averageif(s)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
How to write something is greater than A2 in a function
">"&A2
26
How to write something is greater than and equal to A2 in a function
">="&A2
27
Hard Coded Greater than 2 In a function
">2"
28
Greater than A2 In a formula
>A2
29
Greater than or equal to In a formula
>=A2
30
Syntax Use: Cell References small than
Less Than
31
What 3 functions can be used for Less Than
Sumif(s), Countif(s), and Averageif(s)
32
How to write something is less than A2 in a function
"<"&A2
33
How to write something is less than and equal to A2 in a function
"<="&A2
34
Hard Coded Less than 2 In a function
"<2"
35
Hard Coded Less than or equal to In a formula
"<=2"
36
Less than A2 In a formula
37
Less than or equal to In a formula
<=A2
38
Syntax Use: Has to be broken into an AND formula with each range defined separately. You cannot write: =50>=E2<=80
Between
39
How to write =50>=E2<=80 in a function
=AND(E2>=50,E2<=80)
40
Syntax Use: To denote a character that will match any character or sequence of characters in a search
Wild Card
41
Rules of Wildcard, you need an ______ within ""
Asterisk, *
42
Formula Use: adds the numbers in a range of cells
Sum
43
How to add the range of A2:A9
=SUM(A2:A9)
44
How to add the cells A2,A5,A7
=SUM(A2,A5,A7)
45
Formula Use: Calculates the arithmetic mean of a list of values
Average
46
How to find the average of (A2:A5)
=AVERAGE(A2:A5)
47
Formula Use: Returns the smallest number of a range of values
Min
48
Formula Use: Returns the largest number of a range values
Max
49
What function to use when you need the smallest number in a range?
Min
50
What function to use when you need the largest number in a range
Max
51
Formula Use: Determines the number of cells in a range that contain numbers
Count
52
What function to use when you need to count the numbers in a range
Count
53
Does the Count formula ignore blank/empty cells
Yes
54
Formula Use: Determines the number of cells in a range that are not empty
CountA
55
What function to use when you need to count all the characters in a range
CountA
56
Does the CountA formula ignore blank/empty cell
Yes
57
Formula Use: Rounds a number to specified number of digits. When nesting use before other formulas
Round
58
For Round Function, what does -2 =
Nearest Hundreds
59
For Round Function, what does -1 =
Nearest Tens
60
For Round Function, what does 0 =
Nearest Whole Number
61
For Round Function, what does 1=
Nearest Tenth
62
For Round Function, what does 2 =
Nearest Hundreths
63
Conditional Statistical Functions Use:Counts the number of items in a range that meets a specific criteria
COUNTIF
64
Conditional Statistical Functions Use: Counts the number of items in a range that meet a specific criteria for multiple criteria and ranges
COUNTIFS
65
Conditional Statistical Functions Use: Sums the number of items in a range that meet a specific criteria
SUMIF
66
Conditional Statistical Functions Use: Sums the number of items in a range that meet a specific criteria for multiple criteria and ranges
SUMIFS
67
Conditional Statistical Functions Use: Averages the number of items in a range that meet a specific criteria
AVERAGEIF
68
Conditional Statistical Functions Use: Averages the number of items in a range that meet a specific criteria for multiple criteria and range
AVERAGEIFS
69
Conditional Statistical Functions Use: Returns a specific value from the largest number in the array
Large
70
Conditional Statistical Functions Use: Returns a specific value from the smallest number in the array
Small
71
Conditional Statistical Functions Use: Returns the rank of a number in a list of numbers
Rank.Eq
72
If you want to rank a list of numbers in a descending order, what needs to be included
0 or omitted number
73
If you want to rank a list of numbers in a ascending order, what needs to be included
1
74
Conditional Statistical Functions Use: Multiplies corresponding components in the given arrays, and returns the sum of those products
SumProduct
75
In the SumProduct function, are non numeric cells ignored or treated as 0
treated as 0
76
What answers do Boolean Functions return
True/False
77
Boolean Functions Use: Returns true if all arguments are true
And
78
Boolean Functions Use: Returns true if one of the arguements is true
Or
79
Boolean Functions Use: Returns false when one arguement is false
And
80
Boolean Functions Use: Returns false when all arguments are false
OR
81
Boolean Functions Use: Changes false to true and true to false
NOT
82
Boolean Functions Use: Returns true when the arguments have been met Ex: =Not(Or(F5:F7))
NONE
83
Boolean Functions Use: Returns true when the arguments have been met Ex: =And(E5>=B2, Not(F8))
ONLY
84
IF Functions Use: Checks to see if a condition is true or false. If true one thing happens, if false another thing happens
IF
85
Validates if a value is True or False
IF(True/False)
86
What to do when you need the cell to say true or false in an IF function ?
=IF(A1,"Cell contains the word True","Cell contains the word False")
87
IF Functions Use:Series of if formulas - If this is true, do this. else if this is true, do this, else do this. Can be nested up to 64 times
Nested IF
88
IF Functions Use: Solve in order based upon the highest to lowest or lowest to highest
Embedded IF