Open a workbook in the background (like filestream)

T

TommySzalapski

Is there any way to open a workbook for editing without actually having
it appear on the screen (like filestream but still with full Excel
functionality)?

Thanks,
Tommy
 
T

Tom Ogilvy

Application.ScreenUpdating = False
set bk = Workbooks.Open("C:\ABC\myfile.xls")
bk.Windows(1).Visible = False
Application.ScreenUpdating = True
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top