I am running the following code:
These lines of code
These lines of code operates correctly on my machine. The code does not work when run on another machine.
I am at a loss as to why it works on one machine, but not another.
Code:
Set wkb = ActiveWorkbook
With Workbooks.Open(Filename:="C:\Sourcewb\blank.xlsm")
.Worksheets("Lookup Tables").Copy Before:=wkb.Worksheets(1)
.close SaveChanges:=False
End With
These lines of code
These lines of code operates correctly on my machine. The code does not work when run on another machine.
I am at a loss as to why it works on one machine, but not another.