Sub profil_vent()
Dim col As Integer
col = 1
'Upgrade
Application.ScreenUpdating = False 'speed up macro execution
Application.EnableEvents = False 'turn off other macros for now
Application.DisplayAlerts = False 'turn off system messages for now
For i = 1 To 20
Cells(i, col) = DistrQsN(Rnd, 2, 4)
Next
End Sub