Hello Foxguy,
Here is the updated macro code. It has already been installed in the attached workbook.
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim CopyCells As Boolean
Dim oButton As Object, lColorIndex As XlColorIndex
Static PrevSelection As Range
Application.EnableEvents = False
If Application.CutCopyMode Then
CopyCells = True
End If
On Error Resume Next
Set oButton = Sheet1.Buttons("Button 1")
'
If Not oButton Is Nothing Then
With oButton
lColorIndex = .Font.ColorIndex
.Font.ColorIndex = IIf(lColorIndex = 3, 15, 3)
End With
End If
If CopyCells Then
PrevSelection.Copy
Else
Set PrevSelection = Target
End If
Application.EnableEvents = True
End Sub
Bookmarks