'''''''''''''''''''''''''''''''''''
Sub TestDatapmo()
Dim R As Range
Dim Rdest As Range
Dim ListDataAll As Variant
' Chargement rapide des données
Set R = Range("A2:C3")
ListDataAll = R
' Inscription
Set Rdest = Application.InputBox(Prompt:="Sélectionnez une cellule", Title:="Destination (non transposé)", Type:=8)
Set Rdest = Rdest.Resize(R.Rows.Count, R.Columns.Count) 'la différence est là
Rdest = ListDataAll
End Sub
'''''''''''''''''''''''''''''''''''
'''''''''''''''''''''''''''''''''''
Sub TestDatapmoTranpose()
Dim R As Range
Dim Rdest As Range
Dim ListDataAll As Variant
' Chargement rapide des données
Set R = Range("A2:C3")
ListDataAll = R
' Inscription
Set Rdest = Application.InputBox(Prompt:="Sélectionnez une cellule", Title:="Destination (transposé)", Type:=8)
Set Rdest = Rdest.Resize(R.Columns.Count, R.Rows.Count) 'la différence est là
Rdest = Application.Transpose(ListDataAll)
End Sub
'''''''''''''''''''''''''''''''''''