Hy
I need some help
I use this vba code to put target valule in VERTICAL LINE
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Not Intersect(Target, Range("C15:C89")) Is Nothing Then
Cancel = True
Cells(Range("A100").End(xlUp).Row + 1, 1) = Target.Value
End If
End Sub
which is VBA code to put target value in ORIZONTAL LINE.
Thank's.
I need some help
I use this vba code to put target valule in VERTICAL LINE
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Not Intersect(Target, Range("C15:C89")) Is Nothing Then
Cancel = True
Cells(Range("A100").End(xlUp).Row + 1, 1) = Target.Value
End If
End Sub
which is VBA code to put target value in ORIZONTAL LINE.
Thank's.
Last edited: