Hi,
The intention is to double click on any part of a Row (E.G. Row "E") and to copy to the clipboard the contents of the first cell (E.G. "E1") and then release the highlight -whilst retaining the clipboard content for use in another application.
What am I doing wrong - It copies the 1st time, it gets the cell hit, it then does not work but edits the cell.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range)
'/force active cell to be the first in the row
Range("A" & Target.Row, "E" & Target.Row).Select
Target.Copy
Application.CutCopyMode = False
End Sub
Thanks
The intention is to double click on any part of a Row (E.G. Row "E") and to copy to the clipboard the contents of the first cell (E.G. "E1") and then release the highlight -whilst retaining the clipboard content for use in another application.
What am I doing wrong - It copies the 1st time, it gets the cell hit, it then does not work but edits the cell.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range)
'/force active cell to be the first in the row
Range("A" & Target.Row, "E" & Target.Row).Select
Target.Copy
Application.CutCopyMode = False
End Sub
Thanks