FindString = Sheets("Input").Range("C4").Value
If Trim(FindString) <> "" Then
Better would be:
FindString = Trim(Sheets("Input").Range("C4").Value)
If Len(FindString) Then
VBA keeps the length of each string embedded at the beginning of each string. So finding the length of a string is easy for VBA and is faster than comparing it to a zero length string. Also, 0 = False, anything else = True. Thus:
Is better than If Len(FindString) > 0 Then[/CODE]
Now, about the following:
If Not Rng Is Nothing Then
Application.Goto Rng, True
Else
MsgBox "Nothing found"
End If
Here you should just have:
If Rng Is Nothing Then
MsgBox "Nothing found"
Exit Sub
End If
Now, instead of:
ActiveCell.Offset(0, 8).Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
ActiveCell.Offset(0, 1) = Date
You should have:
Rng.Offset(0, 8) = Range("C8")
Assuming that this range's worksheet is active, if not then:
Rng.Offset(0, 8) = Worksheets("Wherever").Range("C8")
Then:
There is no need to goto the location of Rng in order to use the location of Rng.
Bookmarks