Option Explicit
Sub SameColorSelection()
Dim MyClr As Long
Dim MyClrs As Range
Dim MyCells As Range
MyClr = Range("A1").Interior.Color
For Each MyCells In Range("B3:I18")
If MyCells.Interior.Color = MyClr Then
If MyClrs Is Nothing Then
Set MyClrs = MyCells
Else
Set MyClrs = Union(MyClrs, MyCells)
End If
End If
Next
If MyClrs Is Nothing Then
MsgBox "No Color Match"
Else
MyClrs.Select
End If
End Sub