Put this code in the ThisWorkbook level of Visual Basic Editor. This
will disable the options drop down and then disable drag and drop when
the workbook is active. Then when the workbook in deactive (in the
backround) the both of the above will be enabled. This will let you
drag and drop/use option drop down on other workbooks that are open
Private Sub Workbook_Activate()
Application.CommandBars("Tools").Controls("Options...").Enabled = False
Application.CellDragAndDrop = False
End Sub
Private Sub Workbook_Deactivate()
Application.CommandBars("Tools").Controls("Options...").Enabled = True
Application.CellDragAndDrop = True
End Sub
Sandy