P
Phil Floyd
I am manually copying from one sheet a row of cells (A:G) . I then will
paste it into another workbook in a row such as A2:G2 which means that this
entire range remains highlighted. After the paste I would like to select H2
but because of the highlighted range, the code below won't work.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Then
Range("H2").Select
End If
End Sub
If you copy and paste only in A2 then H2 is selected. Is there a work
around for this.
Thanks,
Phil
paste it into another workbook in a row such as A2:G2 which means that this
entire range remains highlighted. After the paste I would like to select H2
but because of the highlighted range, the code below won't work.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Then
Range("H2").Select
End If
End Sub
If you copy and paste only in A2 then H2 is selected. Is there a work
around for this.
Thanks,
Phil