Sub Calcule5()
Dim L1%, L2%, n%, i%
Application.ScreenUpdating = False
L1 = 74
L2 = 179
For n = 0 To 100
For i = 3 To 12 ' colonne C à L
Cells(23, i) = n / 100
Next i
For i = 3 To 12
Cells(L1, i) = Cells(36, i) ' Stockage1
Cells(L2, i) = Cells(30, i) ' Stockage2
Next i
L1 = L1 + 1 ' incrément tableau 1
L2 = L2 + 1 ' incrément tableau 2
Next n
[C23:L23].ClearContents
End Sub