Private Sub CommandButton1_Click()
Dim DL%, L%, C%
Application.ScreenUpdating = False
DL = Range("B65500").End(xlUp).Row
C = 3
While Cells(5, C) <> ""
tablo = Split(Cells(5, C), " ")
For L = 6 To Range("B65500").End(xlUp).Row
If Cells(L, C) = "x" Then
Cells(L, C) = Replace(tablo(UBound(tablo) - 1) & " H", "(", "")
End If
Next L
C = C + 1
Wend
End Sub