The drag & drop is disabled so that the user does not accidently corrupt the formulas. The drag & drop feature can be enabled by changing the following code in my VBA project ('Workbook')
From:
Application.CellDragAndDrop = False
To:
Application.CellDragAndDrop = True
Let me know if you require more details or this does not work.
Rupert
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This affects all worksheets open. Is there anyway to disable this locked down protection.
The drag & drop is disabled so that the user does not accidently corrupt the formulas. The drag & drop feature can be enabled by changing the following code in my VBA project ('Workbook')
From:
Application.CellDragAndDrop = False
To:
Application.CellDragAndDrop = True
Let me know if you require more details or this does not work.
Rupert