![]() |
#11
|
|||
|
|||
![]()
Hi NoSparks, now I understand what you meant with the following:
ActiveWorkbook is the last workbook opened by the OpenUpFiles macro and ActiveSheet will be the sheet that was active at the time that file was last saved. This part of the below code was the problem. Code:
' Change worksheet designations as needed Set Source = ActiveWorkbook.Worksheets("Summary") Set Target = ActiveWorkbook.Worksheets("Sheet1") Here below are the changes made to the code. Code:
' Change worksheet designations as needed Set Source = ThisWorkbook.Worksheets("Summary") Set Target = ThisWorkbook.Worksheets("Sheet1") Again, thanks for the suggestion. |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Noah14 | Excel Programming | 1 | 09-19-2014 11:46 PM |
![]() |
Gerreth | Outlook | 3 | 03-13-2012 05:06 AM |
Partially Obscure Video in PowerPoint | KBsay | PowerPoint | 0 | 10-05-2010 12:49 PM |
Problems working in a partially protected document | Autumn | Excel | 0 | 02-11-2009 03:46 PM |
Drawing partially off printed page | DLRA | Visio | 0 | 09-26-2006 10:40 AM |