G
Guest
The below Macro copies a certain cell's contents over to the next page when
the range (B9:B18) is touched - copies a special note in E5 (of the same
page) to the following page - inserts in cell B6.
I want to do the same thing for my next range of cells in the same page
(B21:B28), but I need a different cell's contents to copy to the next page -
E18 (of same page) to next page cell B11.
Every time I try to combine the request for the same worksheet, I get an
error or it just doesn't work??
Thank you for any thoughts - Jenny
_____________________________________________________________________________
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, Range("B9:B16")) _
Is Nothing Then Exit Sub
Sheets("Interview Builder").Range("e5").Copy
Destination:=Sheets("Definition").Range("b6")
End Sub
the range (B9:B18) is touched - copies a special note in E5 (of the same
page) to the following page - inserts in cell B6.
I want to do the same thing for my next range of cells in the same page
(B21:B28), but I need a different cell's contents to copy to the next page -
E18 (of same page) to next page cell B11.
Every time I try to combine the request for the same worksheet, I get an
error or it just doesn't work??
Thank you for any thoughts - Jenny
_____________________________________________________________________________
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, Range("B9:B16")) _
Is Nothing Then Exit Sub
Sheets("Interview Builder").Range("e5").Copy
Destination:=Sheets("Definition").Range("b6")
End Sub