I have a macro which I use to copy item from one workbook to another without copying any formulas.
The macro has been working without any problems until this morning. If I copy 1 row 1 column, to paste to another workbook, it does copy fine but then clears the row below of any information that's there.
Has there been a change in the way paste special works?
My macro is as follows:
On Error Resume Next
ActiveSheet.PasteSpecial Format:="Text", Link:=False, DisplayAsIcon:= _
False
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
The macro has been working without any problems until this morning. If I copy 1 row 1 column, to paste to another workbook, it does copy fine but then clears the row below of any information that's there.
Has there been a change in the way paste special works?
My macro is as follows:
On Error Resume Next
ActiveSheet.PasteSpecial Format:="Text", Link:=False, DisplayAsIcon:= _
False
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False