Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a macro that goes into a folder, grabs all excel documents and
combines into one workbook. I want to move that particular file after its combine to the master file. Basically, I have two folders 1. New 2 Old I use the code below. Once I use the file I would like to move it to the Old Folder. So, the next day it will be ready for the next group of files. Thanks Application.EnableEvents = False Application.ScreenUpdating = False Path = "c:\new" ''Change as needed FileName = Dir(Path & "\*.xls", vbNormal) Do Until FileName = "" Set Wkb2 = Workbooks.Open(FileName:=Path & "\" & FileName) For Each WS In Wkb2.Worksheets WS.Copy After:=ThisWorkbook.Sheets(ThisWorkbook.Sheets.Cou nt) Next WS Wkb2.Close False FileName = Dir() Loop Application.EnableEvents = True Application.ScreenUpdating = True |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Move excel file to desk top? | Excel Discussion (Misc queries) | |||
Excel Outlook Attachments opening after several errors everytime | Setting up and Configuration of Excel | |||
Hyperlinks - Move file to local drive, all links break | Excel Discussion (Misc queries) | |||
Links picking up values from an older version of linked file | Links and Linking in Excel | |||
How do you open a template at startup? | Excel Discussion (Misc queries) |