Excel- Tutorial Week 3 Flashcards
(9 cards)
When using the copy down function in excel, how do you fix the column only?
Put a dollar sign behind the column letter e.g. $D9
When using the copy down function in excel, how do you fix the row only?
Put a dollar sign behind the row number e.g. D$9
When using the copy down function in excel, how do you fix both the column and row?
Put a dollar sign behind the column letter and the row number e.g. $D$9
How would you work out the mean/average of some cell values?
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 would you work out the maximum of some cell values?
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 would you work out the minimum of some cell values?
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 would you use an IF statement?
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 do use the count statement?
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 do you use the COUNTIF statement?
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)