Results 1 to 8 of 8

Newly Created Sheets Replacing Existing

Threaded View

  1. #1
    Registered User
    Join Date
    05-19-2008
    Posts
    16

    Newly Created Sheets Replacing Existing

    I have a novice question...

    How would I create a macro that copies a template and creates a new sheet from it? I have the basics down, but the template has values that carry through to the copies, thus creating duplicates. How would I specify to copy the values only, and not the code?
    ____________________________________
    Sub CopyTemp()
    '
    ' CopyTemp Macro
    '
    
    '
        Sheets("Template").Select
        Sheets("Template").Copy After:=Sheets(3)
        Dim Newname As String
        Newname = InputBox("Insert Date (MM-DD-YY)")
         If Newname <> "" Then
          ActiveSheet.Name = Newname
      End If
    
    End Sub
    ______________________________________________________
    Last edited by rylo; 05-19-2008 at 11:23 PM.

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