Exam 1 Review Flashcards
Function
Use: the names listed on tabs of the worksheet
Worksheet Names
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
Worksheet Names
What must the worksheet be encased in when they include one or more spaces
’ ‘ and include ! after
=’Worksheet Name’!Cells
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
Cell Referencing
Cell with the information
Cell Referencing
A2
Single cell reference
A2:A9
Range along a column
A2:H2
Range along a row
A:A
Range along the entire column
A2:C8
Block Range
$ locks the referenced item preventing it from changing
Mixed Cell Reference
$A2
Locks the Column
Mixed Cell Reference
A$2
Locks the row
Mixed Cell Reference
Exact Cell
Absolute Cell Reference
$A$2
Locks the column and row
Absolute Cell Reference
Function
Use: Use a name for cell reference. Treated as an absolute cell reference
Named Ranges
Best to use when complex and/or long cell references. Also, helps with remembering the purpose of the formula
Named Ranges
Sales Tax instead of “A2*1.075”
Named Ranges
Function
Use: Pre- determine if you want __ ___ to be included in your calculation
Blank Cells
Included: Fill with 0 (zero)
Excluded: Leave Blank
Blank Cells
Syntax
Use: when using text items in cell references
Text
For Text what words do we not need to put quotes are
AND, OR, NOT, TRUE, FALSE
Syntax
Use: Cell references larger than
Greater Than
What 3 functions can be used for Greater Than
Sumif(s), Countif(s), and Averageif(s)
How to write something is greater than A2 in a function
”>”&A2
How to write something is greater than and equal to A2 in a function
”>=”&A2
Hard Coded
Greater than 2
In a function
“>2”
Greater than A2
In a formula
> A2
Greater than or equal to
In a formula
> =A2
Syntax
Use: Cell References small than
Less Than
What 3 functions can be used for Less Than
Sumif(s), Countif(s), and Averageif(s)
How to write something is less than A2 in a function
”<”&A2
How to write something is less than and equal to A2 in a function
”<=”&A2
Hard Coded
Less than 2
In a function
“<2”
Hard Coded
Less than or equal to
In a formula
”<=2”