Function Concatene(PlageN, Lnom, Ltype)
'Ecrire 4xG4 : 592*592 / 4xF9 : 592*592 / 4xH14 : 610*619*292
Dim N, L%, C%, Nom$, TypeC$
For Each N In PlageN
L = N.Row: C = N.Column
Nom = Cells(Lnom, C): TypeC = Cells(Ltype, C)
If Cells(L, C) <> "" Then
Concatene = Concatene & Cells(L, C) & "x" & TypeC & " : " & Nom & " / "
End If
Next
If Len(Concatene) > 0 Then
Concatene = Mid(Concatene, 1, Len(Concatene) - 2) ' Supprime le dernier /
Else
Concatene = ""
End If
End Function