Bonsoir,
=CONCATENER(A1; "-";A2;"-";A3)
A+
Claudy
A la mimine: copier Coller Valeurest il possible de transformer le resultat de la formule =CONCATENER(A1; "-";A2;"-";A3) en simple texte ?
merci beaucoupA la mimine: copier Coller Valeur
Caudy
Sub Pas_à_la_mimine()
Dim anche, a_Bamako$
If Selection.Columns.Count > 1 Then Exit Sub
anche = Application.Transpose(Selection)
a_Bamako = Join(anche, "-")
Selection.Item(1).Offset(, 1) = a_Bamako
End Sub