Function JT_par_L(Plage As Range)
With Plage.Cells
If .Cells.Count = 1 Then JT_par_L = ""
Dim Liste
ReDim Liste(1, .Cells.Count)
x = Len(.Cells(1).Value)
For i = 2 To .Cells.Count
x = WorksheetFunction.Max(Len(.Cells(i).Value), x)
Next i
For j = 1 To x
For i = 1 To .Cells.Count
Liste(1, j) = Liste(1, j) & Mid(.Cells(i), j, 1)
Next i
Next j
End With
JT_par_L = Application.Transpose(Liste)
End Function