Say I have 4 quizzes, and there is an optional Review Session. Student gets either 100 or 0 for attending/not attending the review session. If student attends the review, their lowest quiz scores will be replaced by 100, provided the quiz to be replaced is at least 70. Please note that there could be duplicates in the quiz scores, replacing the first instance is enough.
Example:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Orig Q1[/TD]
[TD]Orig Q2[/TD]
[TD]Orig Q3[/TD]
[TD]Orig Q4[/TD]
[TD]Review Session (0 or 100 only)[/TD]
[TD]New Q1[/TD]
[TD]New Q2[/TD]
[TD]New Q3[/TD]
[TD]New Q4[/TD]
[/TR]
[TR]
[TD]20[/TD]
[TD]70[/TD]
[TD]80[/TD]
[TD]90[/TD]
[TD]100[/TD]
[TD]20[/TD]
[TD]100[/TD]
[TD]80[/TD]
[TD]90
[/TD]
[/TR]
[TR]
[TD]80[/TD]
[TD]80[/TD]
[TD]30[/TD]
[TD]95[/TD]
[TD]100[/TD]
[TD]100[/TD]
[TD]80[/TD]
[TD]30[/TD]
[TD]95[/TD]
[/TR]
</tbody>[/TABLE]
In the 1st example, Q2=70 is the lowest score (should only consider quizzes that are at least 70), so it is replaced by 100.
In the 2nd example, 80 is the lowest score (that is at least 70), but there are repeated scores, only the first instance is to be replaced by 100.
If Review session = 0, then No change.
Thanks so much in advance !
Example:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Orig Q1[/TD]
[TD]Orig Q2[/TD]
[TD]Orig Q3[/TD]
[TD]Orig Q4[/TD]
[TD]Review Session (0 or 100 only)[/TD]
[TD]New Q1[/TD]
[TD]New Q2[/TD]
[TD]New Q3[/TD]
[TD]New Q4[/TD]
[/TR]
[TR]
[TD]20[/TD]
[TD]70[/TD]
[TD]80[/TD]
[TD]90[/TD]
[TD]100[/TD]
[TD]20[/TD]
[TD]100[/TD]
[TD]80[/TD]
[TD]90
[/TD]
[/TR]
[TR]
[TD]80[/TD]
[TD]80[/TD]
[TD]30[/TD]
[TD]95[/TD]
[TD]100[/TD]
[TD]100[/TD]
[TD]80[/TD]
[TD]30[/TD]
[TD]95[/TD]
[/TR]
</tbody>[/TABLE]
In the 1st example, Q2=70 is the lowest score (should only consider quizzes that are at least 70), so it is replaced by 100.
In the 2nd example, 80 is the lowest score (that is at least 70), but there are repeated scores, only the first instance is to be replaced by 100.
If Review session = 0, then No change.
Thanks so much in advance !