Copying and Pasting Data to a new Sheet
Open up the Spreadsheet you used for the last section. (If you haven't yet downloaded the spreadsheet, click here: Download the spreadsheet.)
Because the exam spreadsheet might be a little full, we'll start on a new sheet. We'll copy and paste the student data onto sheet 2. To do that, follow these steps:
- Highlight the data you want to copy
- For us, that's the student data, as in the image below:
- With the data highlighted, click on Edit from the menu bar
- From the drop down list, click on Copy. The marching ants surround your highlighted data
- Look at the bottom of the spreadsheet and locate Sheet2, as in the next image:
- Click on Sheet2 with your left mouse button
- The blank Sheet2 spreadsheet should appear
- Click inside cell A1
- Press the Return key on your keyboard to paste the data (Or click Edit > Paste from the Excel menu bar)
Add the following labels to Sheet2 of your spreadsheet:
We'll now use the CountIF function to see how many of the students were above a score of 70 in each subject.
CountIF
The CountIf function only calculates things when a certain condition is met. For example, only count the students whose grades are above B.
The CountIF function uses this syntax:
COUNTIF(range, criteria)
In other words, it takes two arguments. The first argument is range, and this means the range of cells you want to count. The criteria is what you want excel to look for when it is counting. Let's see it in action.
- Click inside cell B15
- Click inside the formula bar
- Enter the following function:
=CountIf(B2:I2, ">= 70")
- Press the return key on your keyboard
- The answer you should have got was 4
The formula says, look in cells B2 to I2. Then check for a score of greater than or equal to 70. If you find this score, keep a Count.
So 4 students achieved a mark of 70 or above for Maths. To do the rest of the scores, you can use AutoFill. When you have finished, it should look like this one below:
CountIF is a very useful function for simple data analysis.
No comments:
Post a Comment