Private Sub CommandButton1_Click()
With Sheets("Feuil1").Cells
Set c = .Find("ING", LookIn:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
temp = temp + c.Offset(0, 1)
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With
MsgBox temp
End Sub