billandrew
Well-known Member
- Joined
- Mar 9, 2014
- Messages
- 743
Unsure why I receiving a Run Time Error with the following code. Any help...
Thank You
Thank You
Code:
With ActiveSheet.Range("A1:c25")
Set c = .Find(2020, LookIn:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.Value = "Replaced"
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With