Hi,
Consider the following table, it is an exam record for students.
There is a name column at the start and then the
column and Semester 1 till Semester 6 columns.
I want to
Consider the following table, it is an exam record for students.
There is a name column at the start and then the
VBA Code:
Semester Check
I want to
- Find the missing represented by null,
- The failures (any value < .4) and
- Want to display the failure and missing counter in the Semester Check column
Student Name | Semester Check | Semester 1 | Semester 2 | Semester 3 | Semester 4 | Semester 5 | Semester 6 |
Student 1 | M-1 F-0 | 0.44 | 0.58 | 0.6 | 0.54 | null | 0.88 |
Student 3 | M-2 F-0 | null | null | 0.64 | 0.48 | 0.44 | 0.52 |
Student 2 | M-0 F-1 | 0.46 | 0.56 | 0.34 | 0.44 | 0.68 | 0.66 |