This should be an easy one but I'm struggling to enable Drag & Drop when I close down my Workbook, I can disable when I open with:
Private Sub Workbook_Open()
Application.CellDragAndDrop = False
End Sub
But when I close it down... this doesn't seem to work:
Private Sub Workbook_Close()
Application.CellDragAndDrop = True
End Sub
In fact it leaves it disabled for any workbook I subsequently use....
Should I be saving them both into the This Workbook in VB, or into a Module (what's the difference #blush#)
Thanks
Jim
Private Sub Workbook_Open()
Application.CellDragAndDrop = False
End Sub
But when I close it down... this doesn't seem to work:
Private Sub Workbook_Close()
Application.CellDragAndDrop = True
End Sub
In fact it leaves it disabled for any workbook I subsequently use....
Should I be saving them both into the This Workbook in VB, or into a Module (what's the difference #blush#)
Thanks
Jim