1
1clncc
In Excel, with Ctrl and mouse, I can click multiple cells. Those
cells would then be temporarily, until next mouse click, stay in a
Blue Hightlited state.
How can I achieve that with the below FIND rountine for those found
cells
************************************************************
With Range("Post_Code2")
Set c = .find(NNN, LookIn:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.Interior.Pattern = xlPatternGray50
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With
********************************************************************
cells would then be temporarily, until next mouse click, stay in a
Blue Hightlited state.
How can I achieve that with the below FIND rountine for those found
cells
************************************************************
With Range("Post_Code2")
Set c = .find(NNN, LookIn:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.Interior.Pattern = xlPatternGray50
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> firstAddress
End If
End With
********************************************************************