Hi,
i have this VBA code which if a cell in the range E8:AF10 is clicked, the cell value is copied to Sheet 2 - B3
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)If Not Intersect(Target, Range("E8:AF10")) Is Nothing Then
Cancel = True
Target.Copy...