bonjour,
une proposition
Sub aargh()
With Sheets("feuil1")
Set re = .Range("A1:N1").Find("TOTAL", lookat:=xlWhole, LookIn:=xlValues)
If Not re Is Nothing Then
dl = .Cells(Rows.Count, re.Column).End(xlUp).Row
.Range("O1").Resize(dl).Value = Cells(1, re.Column).Resize(dl).Value
End If
End With
End Sub