Sub Copier_dans_presse_papiers()
Dim c As Range, x$
For Each c In Selection
x = x & vbLf & c
Next
With CreateObject("New:{1C3B4210-F441-11CE-B9EA-00AA006B1A69}") ' DataObject en late binding
.SetText Mid(x, 2)
.PutInClipboard
End With
MsgBox "Les données sont dans le presse-papiers." & vbLf & "Touches Ctrl+V pour les coller où vous voulez..."
End Sub