Results 1 to 6 of 6

undo execute after macro

Threaded View

  1. #1
    Registered User
    Join Date
    02-10-2011
    Location
    Portugal
    MS-Off Ver
    Excel 2003
    Posts
    46

    undo execute after macro

    i have a macro to insert a new row and copy formula, from the row above
    but if i do a mistake, the undo is not possible
    why?

    the macro is this one
    Dim MyRow As Integer
    MyRow = ActiveCell.Row
    For Each Sheet In Sheets
        Sheet.Rows(MyRow).Insert
        Sheet.Rows(MyRow - 1).Copy
        Sheet.Rows(MyRow).PasteSpecial Paste:=xlPasteFormulas
        Sheet.Rows(MyRow).SpecialCells(xlCellTypeConstants).ClearContents
    Next Sheet
    Last edited by royUK; 02-18-2011 at 05:41 AM. Reason: add code tags

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1