Hi,
I use a sheet macro to highlight an entire row when certain cells are
clicked....works great.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column < 3 Then
Rows(Target.Row).Select
End If
End Sub
The problem comes when I run other programs that go to this particular
sheet to do formatting......e.g. select particular ranges and then
change colors and add or remove borders. It seems that as ranges are
selected the above sheet macro is executed. this screws everything
up.
Is there some way for the other macros (these are not sheet specific)
to de-activate or ignore this sheet macro so that they will execute
properly. (they run fine without the sheet macro present.
Thanks
chuckm
Bookmarks