*ing will find 'running', 'walking', and 'singing'.h?t will find 'hat' and 'hot', but not 'heat'.* wildcard is 'greedy' and matches any length, whereas the ? is precise and matches exactly one character position.| Feature | AND Operator | OR Operator |
|---|---|---|
| Result Set | Smaller / More Specific | Larger / More General |
| Requirement | All conditions must be True | At least one condition must be True |
| Use Case | Finding a specific needle in a haystack | Collecting items from multiple categories |
Selection Integrity: Always select all relevant columns before performing a sort operation. If you only select one column to sort in a table, the data in that column will move while the rest stays put, causing permanent data misalignment.
Operator Syntax: In exams, remember that 'not equal to' is written as <> in many spreadsheet environments. Ensure you use the correct symbol when asked to write out search criteria.
Wildcard Placement: Pay close attention to where the wildcard is placed. *s finds words ending in 's', while s* finds words starting with 's'. Misplacing the asterisk will yield completely different results.
The Partial Sort Trap: A common mistake is sorting a single column without expanding the selection. This detaches the data from its original row, making the spreadsheet's information factually incorrect.
Confusing * and ?: Students often use * when they mean ?. If you need to find 3-letter words starting with 'A', A?? is the correct search; A* would incorrectly include 'Apple' and 'Albatross'.
Logical Over-Restriction: Using AND for criteria that are mutually exclusive (e.g., Color = Red AND Color = Blue) will return zero results, as a single cell cannot hold both values simultaneously.
Database Queries: The principles of spreadsheet searching and selection are identical to SQL (Structured Query Language) used in professional databases. Understanding AND/OR logic here directly transfers to database management skills.
Data Cleaning: Selection is a prerequisite for data cleaning. By searching for empty cells or outliers ( standard deviations), users can identify and fix errors in large datasets before analysis.