Private Sub BoutonHisto_Click()
'
' Macro d'historisation des attributions de portables de pré ouvertures
Suivi = ActiveSheet.Name
Application.ScreenUpdating = False
Selection.Copy
With Sheets("Histo")
.Activate
Set LigDispo = .Range(Cells(65536, 1), Cells(65536, 1)).End(xlUp).Offset(1, 0)
.Range(Cells(LigDispo, 1), Cells(LigDispo, 1)).Select
End With
ActiveSheet.Paste
Sheets(Suivi).Activate
Application.ScreenUpdating = True
End Sub