• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

NON FUNCTIONING OF AUTO DRAG

Hi, If you are using Excel 2007 version follow below steps...


File>>Options>>Advanced>>


and check "Enable Fill handle and cell Drag-and drop"


Regards,

Prasad
 
Hello


This is a very common problem for me, I am not sure if one of my macros or add ins that turns off my Drag and Drop. I suspect it's a macro I use to turn off copy/cut/paste functionality to protect a roster that relies on data validation a lot. So I have this simple macro that you can copy into a module in say your personal.xls and attach it to say the keystrokes ALT F or whatever and it makes this a very minor nuisance for me.


Sub AllowDragDrop()

Application.CellDragAndDrop = True

End Sub


Cheers

John
 
Back
Top