Results 1 to 4 of 4

Merging VBA into one.

Threaded View

  1. #1
    Registered User
    Join Date
    04-27-2011
    Location
    England
    MS-Off Ver
    Excel 2010
    Posts
    79

    Cool Merging VBA into one.

    Please help

    Here is my code, I need it all to run under one single keyboard shortcut, currently I have to do 2.

    Sub TimeSheet()
    '
    ' TimeSheet Macro
    '
    ' Keyboard Shortcut: Ctrl+w
    '
        Sheets(Array("Jun 13", "Lst")).Select
        Sheets("Jun 13").Activate
        Sheets(Array("Jun 13", "Lst")).Copy
        Cells.Select
        Selection.Copy
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
        Range("A1").Select
        Sheets("Lst").Select
        ActiveWindow.SelectedSheets.Visible = False
    
    End Sub
    Sub SaveAsA1()
    
        ThisFile = Range("F2").Value
        ActiveWorkbook.SaveAs Filename:=ThisFile
        ActiveWindow.Close
    
    End Sub

    Can anyone assist?
    Last edited by arlu1201; 06-19-2013 at 10:32 AM.

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