To display the comments 'EXCELLENT', 'PASSED', or 'FAILED' based on the 'TEST 1 PERCENTAGE', you can use a nested IF function in a spreadsheet program like Excel.
Assuming the 'TEST 1 PERCENTAGE' for the first student is in cell D2:
Step 1: Check if the percentage is higher than or equal to 80%. If true, display 'EXCELLENT'.
IF(D2≥80,"EXCELLENT",...)
Step 2: If the percentage is not 'EXCELLENT' (i.e., less than 80%), check if it is higher than 60%. If true, display 'PASSED'.
IF(D2>60,"PASSED",...)
Step 3: If neither of the above conditions is met (i.e., the percentage is 60% or lower), display 'FAILED'.
"FAILED"
Combining these steps into a single nested IF function:
=IF(D2\ge80,"EXCELLENT",IF(D2>60,"PASSED","FAILED"))