Sub find_Sample()
With Worksheets(1).Range("a1:z500")
Set c = .Find(sample, LookIn:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.Replace "s", "S"
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With
End Sub