1. Validate a dynamically constructed cell reference
| Student | Subject | Assignment | Score | Max Score |
| Alice | Math | Quiz 1 | 85 | 100 |
| Bob | English | Essay | 92 | 100 |
=ISREF(INDIRECT("D2"))Result: TRUE
INDIRECT("D2") constructs a reference to cell D2 as a reference object (not its value). ISREF detects this reference and returns TRUE. This is useful when building dynamic cell references from text strings.