ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
2
ItalianoMatematicaIngleseFisicaInformatica
Minimum grade
Maximum gradeAverageSerious deficiencies: 4total shortcomingsOutcome
3
45379395,623#ERROR!
4
55567575,603
5
53446364,434
6
56656565,602
7
58639396,212
8
5745104106,213
9
55878586,602
10
77789797,600
11
76698697,200
12
46838385,822
13
6564939612
14
66587586,401
15
7583738612
16
56758586,202
17
18
19
If the total shortcomings = 0, then
Return "Promoted"
Otherwise, if the total fails > 3 or there are at least two grades = 4, then
Return "Not Promoted"
Otherwise, if the total of failings between 1 and 3 and there is at least one grade = 5, then
Return "Promoted with deficiencies"
Otherwise
Return "Not Promoted"


This flowchart represents the same conditions as the formula I gave you earlier to determine the outcome of the report card evaluation. The logic is as follows:

If the total of the failings is equal to 0, the student is promoted;
If the total of the failings is greater than 3 or if there are at least two marks equal to 4, the student is not promoted;
If the total of the failings is between 1 and 3 and there is at least one mark equal to 5, the student is promoted with failings;
In all other cases, the student is not promoted.
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100