1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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
|
Public Sub synthese() 'synthese par freq d'apparition
Dim freq() As Integer
Dim icol As Integer, iLigne As Integer
Dim i As Integer
Dim taillejeu As Integer
Sheets("synthese").Range("A2:U2").Clear 'efface la zone de calcul synthese en A2 à T20
icol = 2
iLigne = 6
If Sheets("synthese").Range("B6").Value = "" Then 'test erreur à finir
MsgBox "attention pas de prono selectione"
End
End If
ReDim freq(0)
Do While Sheets("synthese").Range("B" & iLigne).Value <> ""
icol = 2
Do While Sheets("synthese").Cells(iLigne, icol).Value <> ""
'Regarde si la valeur rentre dans le tableau
If UBound(freq) < Sheets("synthese").Cells(iLigne, icol).Value Then
ReDim Preserve freq(Sheets("synthese").Cells(iLigne, icol).Value)
End If
freq(Sheets("synthese").Cells(iLigne, icol).Value) = freq(Sheets("synthese").Cells(iLigne, icol).Value) + 1
icol = icol + 1
Loop
iLigne = iLigne + 1
Loop
'Insere les infos ligne 18
icol = 21
iLigne = 22
For i = 0 To UBound(freq)
If freq(i) > 0 Then
'Infos num avec frequence
Sheets("synthese").Cells(2, icol).Value = i & "(" & freq(i) & ")"
icol = icol + 1
Sheets("synthese").Cells(iLigne, 3).Value = i
Sheets("synthese").Cells(iLigne, 4).Value = freq(i)
iLigne = iLigne + 1
End If
Next i
Sheets("synthese").Activate
'Tri les infos
Sheets("synthese").Cells(22, 4).Select
Selection.CurrentRegion.Select
Selection.Sort Key1:=Sheets("synthese").Range("D22"), Order1:=xlDescending, Header:= _
xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
'Copie les infos
Sheets("synthese").Range("C22:C" & iLigne).Select
Selection.Copy
'demarre l'affichage de la synthese en A2
Sheets("synthese").Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
Sheets("synthese").Cells(22, 4).Select
Selection.CurrentRegion.Select
Selection.Clear
Sheets("synthese").Range("A1").Select
'recopie le resultat de la synthese de la feuille "synthese" dans la feuille resultat à partie de F à U , nombre classe du plus petit au plus grand
Sheets("résultat").Range("F" & ir & ":U" & ir).Value = Sheets("synthese").Range("A2:T2").Value
Sheets("résultat").Range("A" & ir).Value = indexcourse 'ecrire l'index de la course dans la feuil resultat
End Sub |
Partager