Need a VBA that will when you double click in cells o20:o23 the data in that cell will enter in k10
Need a VBA that will when you double click in cells o20:o23 the data in that cell will enter in k10
Hi Ipratt,
Double click will put the cell in editing mode, I would suggest you to use selection change event :-
Regards,![]()
Private Sub Worksheet_SelectionChange(ByVal Target As Range) i = Selection.Address If i = "$O$20" Or i = "$O$21" Or i = "$O$22" Or i = "$O$23" Then ActiveCell.Copy Range("k10") End If End Sub
DILIPandey
<click on below 'star' if this helps>
DILIPandey, Excel rMVP
+919810929744 (India), +971528225509 (Dubai), dilipandey@gmail.com
Hi try this
in a module of worksheet![]()
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Dim rng As Range Set rng = Range("o20:o23") If Not Intersect(Target, rng) Is Nothing Then Cancel = True Range("k10") = Date End If Cancel = False End Sub
Regards
tom1977
If You are satisfied with my solution click the small star icon on the left to say thanks.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks