Resources | Subject Notes | Information Communication Technology ICT
This section focuses on how to extract specific portions of data from a spreadsheet based on defined rules. This is a fundamental skill for data analysis and reporting.
This involves filtering the spreadsheet to display only rows that meet a particular condition in a single column.
Example: Selecting all students who scored above 70 on a test.
This involves applying multiple conditions to filter the data. The conditions are usually combined using logical operators like 'AND' and 'OR'.
Example: Selecting all students who scored above 70 on a test AND are in the 'A' class.
Logical Operators:
Consider the following data:
Name | Class | Test Score | Assignment Score |
---|---|---|---|
Alice | A | 85 | 92 |
Bob | B | 65 | 78 |
Charlie | A | 72 | 88 |
David | C | 90 | 75 |
Eve | A | 55 | 60 |
Scenario 1: Select all students in class 'A'.
Steps: Filter the 'Class' column for 'A'.
Result:
Name | Class | Test Score | Assignment Score |
---|---|---|---|
Alice | A | 85 | 92 |
Charlie | A | 72 | 88 |
Eve | A | 55 | 60 |
Scenario 2: Select all students with a test score above 70.
Steps: Filter the 'Test Score' column for 'Greater than' 70.
Result:
Name | Class | Test Score | Assignment Score |
---|---|---|---|
Alice | A | 85 | 92 |
Charlie | A | 72 | 88 |
David | C | 90 | 75 |
Scenario 3: Select all students in class 'A' with a test score above 70.
Steps: Filter the 'Class' column for 'A' AND the 'Test Score' column for 'Greater than' 70.
Result:
Name | Class | Test Score | Assignment Score |
---|---|---|---|
Alice | A | 85 | 92 |
Charlie | A | 72 | 88 |
Spreadsheet software offers more advanced filtering options, including:
These advanced features allow for highly specific data extraction.