Year 7- Spreadsheets

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 12

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

13 Terms

1

Spreadsheet/worksheet

a table of data arranged in rows and columns.

New cards
2

Spreadsheet cell

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

New cards
3

Spreadsheet column

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

New cards
4

Spreadsheet row

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

New cards
5

=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

New cards
6

=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

New cards
7

=MAX(range)

finds the largest value in a range

e.g. =MAX(C1:C100)

New cards
8

=MIN(range)

Finds the smallest value in a range.

e.g. =MIN(C1:C100)

New cards
9

AutoSum

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

New cards
10

Sort

To arrange data alphabetically, numerically, or chronologically.

New cards
11

Filter

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

New cards
12

=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.

New cards
13

=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

New cards
robot