Excel- Tutorial Week 3 Flashcards

(9 cards)

1
Q

When using the copy down function in excel, how do you fix the column only?

A

Put a dollar sign behind the column letter e.g. $D9

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

When using the copy down function in excel, how do you fix the row only?

A

Put a dollar sign behind the row number e.g. D$9

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

When using the copy down function in excel, how do you fix both the column and row?

A

Put a dollar sign behind the column letter and the row number e.g. $D$9

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

How would you work out the mean/average of some cell values?

A

Use average function

So click on cell you want to see the mean/average in and type =average and then highlight the cells from which you want the mean/average calculated

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

How would you work out the maximum of some cell values?

A

Use maximum function

So click on cell you want to see the maximum in and type =max and then highlight the cells from which you want the maximum calculated

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

How would you work out the minimum of some cell values?

A

Use minimum function

So click on cell you want to see the minimum in and type =min and then highlight the cells from which you want the minimum calculated

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

How would you use an IF statement?

A

One way in which you could use it is if you want one value in a cell if a cell is greater than a certain and another if it is less

Select the cell you want the formula in and write =IF, then follow the syntax that appears for guidance
The logical test can be if D9>5 then the cell can show “large” (true test) and if the D9<5 then the cell can show “small”

Any word that is to be displayed needs to be written in double inverted commas

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

How do use the count statement?

A

The COUNT function counts the number of cells that contain numbers, and counts numbers within the list of arguments. Use the COUNT function to get the number of entries in a number field that is in a range or array of numbers.
Syntax: COUNT(value1, [value2], …)

Very basic- literally just counts number of cells

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

How do you use the COUNTIF statement?

A

Use COUNTIF, one of the statistical functions, to count the number of cells that meet a criterion; for example, to count the number of times a particular city appears in a customer list. In its simplest form, COUNTIF says:
=COUNTIF(Where do you want to look?, What do you want to look for?)
Syntax: COUNTIF(range, criteria)

For example:
=COUNTIF(A2:A5,”London”)
=COUNTIF(A2:A5,A4)

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