Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
Is there a way to detect that the event (WorkSheet_Change or any other) occured due to a cell drag copy of a cell and not a regular cell edit? Thankyou. Sincerly Gap |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Something like this perhaps,
Private Sub Worksheet_Change(ByVal Target As Range) Static tmr As Single If Timer - tmr < 0.1 Then MsgBox "Dragged & Dropped" End If tmr = Timer End Sub Regards, Vic Eldridge "Gap" wrote: Hello, Is there a way to detect that the event (WorkSheet_Change or any other) occured due to a cell drag copy of a cell and not a regular cell edit? Thankyou. Sincerly Gap |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I copy big ranges of cells without drag or copy/paste? | Excel Discussion (Misc queries) | |||
Drag copy comments | Excel Discussion (Misc queries) | |||
Drag Copy | Excel Worksheet Functions | |||
Copy an Drag cell Formula Problem | Excel Discussion (Misc queries) | |||
Prevent drag copy | Excel Programming |