Spreadsheets Flashcards
What is a spreadsheet?
An application often used to process and display financial or statistical information.
What is a cell?
Given a name called a cell reference
E.g B1, C5
What is a row?
Horizontal group of cells
E.g 1,2,3
What is a column?
Vertical group of cells
E.g A,B,C
What is a label (text)
A piece of text used to identify the contents of rows/columns
E.g Name,Age
What are values (number)
These must be entered in to allow for calculations to be carried out.
E.g 5, 23
What is a Formula? Examples and how it is laid out
An instruction to carry out a calculation, using mathematical operators and references to other cells. Always starts with an equals sign.
= A1 + B2 - addition
= A1 - B2 - subtraction
= A1 * B2 - Multiplication
= A1 / B2 - Division
What is a function and examples?
A function is used to do a very specific job within a spreadsheet.
AUTOSUM
AVERAGE
MAX
MIN
IF VLOOKUP
What does the function do? - AUTOSUM
=SUM(A1:A10)
The autosum formula will add a range of cells. A1 is the first cell in the range and A10 is the last cell in the range. This formula will add A1 through to A10 together
What does the function do? - AVERAGE
=AVERAGE(A1:A10)
The average function will find the average of a range of cells
What does the function do? - MAX
MAX
=MAX(A1:A10)
The max function will find the highest value in this range of cells
What does the function do? - MIN
=MIN(A1:A10)
The min function will find the lowest value in this range of cells.
What does the function do? - If
IF
=IF(A1>60,”PASS”,”FAIL”)
If the contents of cell A1 is greater than 60 then the word PASS will be entered, if it lower than 60, the word FAIL will be entered.
What does the function do? - VLOOKUP
A B
1 BLUE 20.0
2 PINK 1.0
The formula looks like this =VLOOKUP(“BLUE”, A1:B2, 2) and the answer it returns is 20.0
Short for Vertical Lookup. This allows you to look up a value in a range of cells in a column and display that value. Use the value in a selected cell to “lookup” a match in a column of a lookup table
What is relative cell reference?
A relative cell reference is cell reference in a formula that changes depending on its location on a worksheet. For example, if a formula is copied from one cell to another the cell reference in the formula will change.