Hello everyone.
In the attached macro is disabled:
Application.CutCopyMode = False
Application.CellDragAndDrop = False
Now the macro in the module:
Sub copia_articolo ()
Application.CutCopyMode = True
'------------------------------------------------- -----------------------
ActiveCell.Select
Selection.Copy
Sheets ( "Sheet1"). Activate
UltimaRiga = Range ( "A" & Rows.Count) .End (xlUp) .row
Cells (UltimaRiga + 1, 1) .Select
Selection.PasteSpecial Paste: = xlPasteValues, Operation: = xlNone, SkipBlanks _
: = False, Transpose: = False
'------------------------------------------------- -----------------------
Application.CutCopyMode = False
end Sub
It does not work anymore.
Help to correct.
Thanks in advance.
max
Bookmarks