![]() |
Selecting WorkSheets
Hello,
I have code where i open up a worksheet and then i transfer imformation from another sheet into it. This requireds a lot of going back betweet worksheets. Workbooks.Open Filename:="K:\Purchasing Documents\Railcar\ApprovedSupplier.xls" 'some more code Workbooks.Open Filename:="K:\Purchasing Documents\Railcar\DrawingACK.xls" 'some more code Workbooks("ApprovedSupplier").Activate most of the time that works just fine, but every once in awhile if i am using the program on another computer it will give me an error as if it doesn't recognize that the file is already open. Any thoughts on why that might happen? Thanks, Jordan |
Selecting WorkSheets
Try including the file extension, too:
Workbooks("ApprovedSupplier").Activate becomes Workbooks("ApprovedSupplier.xls").Activate There's a windows setting that allows users to hide extensions of known file types. And with that enabled, I bet your existing code works ok. But including the .xls removes all worry. Jordan wrote: Hello, I have code where i open up a worksheet and then i transfer imformation from another sheet into it. This requireds a lot of going back betweet worksheets. Workbooks.Open Filename:="K:\Purchasing Documents\Railcar\ApprovedSupplier.xls" 'some more code Workbooks.Open Filename:="K:\Purchasing Documents\Railcar\DrawingACK.xls" 'some more code Workbooks("ApprovedSupplier").Activate most of the time that works just fine, but every once in awhile if i am using the program on another computer it will give me an error as if it doesn't recognize that the file is already open. Any thoughts on why that might happen? Thanks, Jordan -- Dave Peterson |
Selecting WorkSheets
Nothing jumps to mind - possibly your code is faulty.
-- Regards, Tom Ogilvy "Jordan" wrote in message ... Hello, I have code where i open up a worksheet and then i transfer imformation from another sheet into it. This requireds a lot of going back betweet worksheets. Workbooks.Open Filename:="K:\Purchasing Documents\Railcar\ApprovedSupplier.xls" 'some more code Workbooks.Open Filename:="K:\Purchasing Documents\Railcar\DrawingACK.xls" 'some more code Workbooks("ApprovedSupplier").Activate most of the time that works just fine, but every once in awhile if i am using the program on another computer it will give me an error as if it doesn't recognize that the file is already open. Any thoughts on why that might happen? Thanks, Jordan |
Selecting WorkSheets
This answer was intended to be posted to your previous question.
-- Regards, Tom Ogilvy "Tom Ogilvy" wrote in message ... Nothing jumps to mind - possibly your code is faulty. -- Regards, Tom Ogilvy "Jordan" wrote in message ... Hello, I have code where i open up a worksheet and then i transfer imformation from another sheet into it. This requireds a lot of going back betweet worksheets. Workbooks.Open Filename:="K:\Purchasing Documents\Railcar\ApprovedSupplier.xls" 'some more code Workbooks.Open Filename:="K:\Purchasing Documents\Railcar\DrawingACK.xls" 'some more code Workbooks("ApprovedSupplier").Activate most of the time that works just fine, but every once in awhile if i am using the program on another computer it will give me an error as if it doesn't recognize that the file is already open. Any thoughts on why that might happen? Thanks, Jordan |
All times are GMT +1. The time now is 01:55 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com