Results 1 to 5 of 5

Amend VBA code to 'undo' previous run results before re-running code

Threaded View

sllewe55 Amend VBA code to 'undo'... 11-10-2017, 08:23 AM
davesexcel Re: Amend VBA code to 'undo'... 11-10-2017, 08:53 AM
sllewe55 Re: Amend VBA code to 'undo'... 11-13-2017, 06:05 AM
sllewe55 Re: Amend VBA code to 'undo'... 11-14-2017, 06:32 AM
davesexcel Re: Amend VBA code to 'undo'... 11-14-2017, 08:16 AM
  1. #1
    Registered User
    Join Date
    10-25-2016
    Location
    Birmingham, England
    MS-Off Ver
    2017
    Posts
    4

    Amend VBA code to 'undo' previous run results before re-running code

    The attached workbook is a 'template' for user to register their equipment details into sheet "AA_Data", In worksheet called "Sheet", is a template "Record Card" which, contains formulas to populate the headers from the data for each row completed in "AA_Data".

    Once the user has input their equipment details into "AA_Data", they click the COPY button, which runs below code.

    Sub Copier()
    Dim x As Integer
    x = InputBox("Enter number of times to copy Sheet1")
    For numtimes = 1 To x
    ActiveWorkbook.Sheets("Sheet").Copy _
    After:=ActiveWorkbook.Sheets("Sheet")
    Next
    ActiveWorkbook.Sheets("AA_Data").Activate
    End Sub

    This creates the specified number of duplicate copies of "Sheet" tab, and the formulas contained in this will populate the relevant info from the rows in "AA-Data"

    They then click on RENAME button, so "Sheet" and all its copies are renamed "Sheet1", "Sheet2", "Sheet3" etc, so they can then be printed off.

    Sub RenameTabs()
    
     For x = 1 To Sheets.Count
     If Worksheets(x).Range("A1").Value <> "" Then
     Sheets(x).Name = Worksheets(x).Range("A1").Value
     End If
     Next
     
     End Sub
    My issue is how to build into the code for when new rows of data are added to the "AA_Data" sheet. ( or if row is deleted). The COPY code wont re-run as the "Sheet" has been renamed "Sheet1", and so I need to add to code, where if "Sheet" does not exist, delete all sheets from "Sheet2" to last "Sheet??" (can be variable depending on how many rows of data are entered into "AA-Data" sheet) then rename "Sheet1" to "Sheet", so the Copy code can then re-run.

    I am new to VBA and am really not sure where to start on this one! Any advice appreciated.
    Attached Files Attached Files
    Last edited by sllewe55; 11-13-2017 at 06:31 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Amend code to check cell A2 has data in before running
    By robertguy in forum Excel General
    Replies: 2
    Last Post: 12-11-2016, 09:13 AM
  2. Results differ when running code with and without a BreakPoint
    By Barley_Biker in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-22-2015, 01:22 AM
  3. Help to amend code
    By ExcelFailure in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-15-2015, 08:28 AM
  4. how can i undo After running any other macro code
    By baig123 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 11-29-2014, 02:26 PM
  5. Re-code Userform to open range of sheets like previous sheet code
    By JJFletcher in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-15-2014, 02:31 AM
  6. [SOLVED] Excel VB code. Message pops up while code running asking question. Code must not wait.
    By Heinrich Venter in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-28-2014, 06:10 AM
  7. Getting Trendline formulae - results OK when stepping thru code, missing when running
    By thestormdragon in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-18-2013, 08:15 PM

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