Hello KG869,
Yes, I found the same hilarious issue.
Fast but maybe too fast!
LOL
My initial code became unstable and unreliable cause I tried to keep it short, and in the process, came short myself.
OUCH!!!
Stop laughing please, it hurts man!
Please try the revised attachment now, which sports the Code below;
Option Explicit
Sub Winon()
Range("N17").Select
With Application.FindFormat.Interior
.Color = 65280
End With
Range("N17:NN300").Replace What:="", Replacement:="1", LookAt:=xlPart, SearchOrder:= _
xlByRows, MatchCase:=False, SearchFormat:=True, ReplaceFormat:=True
End Sub
Sub Reset()
Range("N17:NN300").ClearContents
Range("N17").Select
End Sub
The real culprit was this line below:
Range("N17:NN300").Find(What:="", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=True).Activate
Kind regards.
Bookmarks