This simple macro stops after 178 iterations with an Error 28 message. How can I bypass this problem so that the macro keeps running? I've tried a lot of suggestions from forums without success. I'm using Excel 2007. D Hatch Bilthoven NL
Sub Macro1()
' Macro1 Macro
' Keyboard Shortcut: Ctrl+a
ActiveCell.Range("A1:B1").Select
Selection.Copy
ActiveCell.Offset(1, 0).Range("A1").Select
ActiveSheet.Paste
ActiveCell.Offset(-1, 0).Range("A1:B1").Select
Application.CutCopyMode = False
Selection.Copy
ActiveCell.Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
ActiveCell.Offset(1, 0).Range("A1").Select
Application.Run "Macro1"
End Sub

ActiveCellwhen the macro is initiated? Is it intended to always be the currently selected cell? Do you want one Paste and one Paste Special, Values or should they both be one or the other? What stops the macro? It looks to be in an infinite loop (until it runs out of rows and crashes).