why is macro not saving workbooks to folder that I have created.

ghrek

Active Member
Joined
Jul 29, 2005
Messages
426
Hi

I have this macro but it is not saving the 2nd part of the workbook into the folder. Any ideas why not?

VBA Code:
Sub x()

Dim sName As Variant, bFolder As String, dest As String, sh As Worksheet
  sName = InputBox("Subfolder name")
    If sName = "" Then Exit Sub

    bFolder = "\\lo-nas01\ArrivaShared\Passenger Accounts\WA\Old sumaries"


    If Dir(bFolder & "\" & sName, vbDirectory) = "" Then
        MkDir bFolder & "\" & sName
    End If

    dest = bFolder & "\" & sName & "\"

    ActiveWorkbook.SaveCopyAs dest & "NEW SUMMARY1.xls"

    Workbooks.Open dest & "NEW SUMMARY1.xls"
    Worksheets.Select
    Cells.Select
    Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteValues
    ActiveWorkbook.Close True
    ChDir "T:\Passenger Accounts\WA\WA SDT & SUMMARY 201\INPUT SCREENS"
    Workbooks.Open Filename:= _
        "T:\Passenger Accounts\WA\WA SDT & SUMMARY 201\INPUT SCREENS\WEEK 1.xlsm"
    Sheets(Array("Thursday", "Friday ")).Select
   
    ActiveWorkbook.SaveCopyAs dest & "NEW SUMMARY1.xls"
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
It looks like at the end of the code you select two sheets but don't have a copy/paste after that.
 
Upvote 0

Forum statistics

Threads
1,214,648
Messages
6,120,726
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top