Year 7- Spreadsheets

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

Spreadsheet/worksheet

a table of data arranged in rows and columns.

2
New cards

Spreadsheet cell

single box in a spreadsheet, eg cell A1 is top left

3
New cards

Spreadsheet column

a list of cells going down the page, has a letter, eg column A is first

4
New cards

Spreadsheet row

a list of cells running across the page, has a number, eg row 1 is at the top

5
New cards

=SUM(A1:A10)

adds the values in a row or column e.g.

=SUM(A1:A10) will add up everything in cells A1, A2, A3 ... all the way to A10

6
New cards

=COUNT(B1:B16)

counts the non-empty cells in a row or column

e.g. =COUNT(B1:B16) will count all cells which have something in them from B1 all the way to B16

7
New cards

=MAX(range)

finds the largest value in a range

e.g. =MAX(C1:C100)

8
New cards

=MIN(range)

Finds the smallest value in a range.

e.g. =MIN(C1:C100)

9
New cards

AutoSum

A function that automatically identifies and adds ranges of cells in your worksheet.

10
New cards

Sort

To arrange data alphabetically, numerically, or chronologically.

11
New cards

Filter

A set of rules for determining which records will be displayed.

12
New cards

=COUNTIF(range, criteria)

Counts the number of cells within a range that meet the given criteria.

e.g. =COUNTIF(C1:C10, "A") The criteria is A so if the cell has an A in it this will add one to the counter.

13
New cards

=VLOOKUP

Looks for the value in the leftmost column of a table, and then returns a value in the same row from a column you specify.

=vlookup(B2, A1:C10, 2, TRUE)

This will look for whatever is in B2
In the range (table) of A1:C10
Returns the value in Column 2 of the range
Needs to be exat