Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Minimise Window

Status
Not open for further replies.

sanjna000

Programmer
Aug 1, 2003
132
GB
Hi there,

My VBA program is uses to copy data using 2 different workbooks. At the moment i am using a form to activate this code, and once i click OK button to start copying it opens up relevant work books and copies data. But the problem is it takes lot of time since i ve got lots of data in my spreadsheets. So what i really want to do is i need to minimise the excel work book windows while its copying data. How can i do that?

Thank you for u r help!
Sanjna...
 
Minimising the workbooks won't speed up the process, but if you just want to avoid showing that you have opened other workbooks you can insert this code before the open events:
Code:
Application.ScreenUpdating = False

HTH
David

"Probably the only Test Analyst on Tek-Tips"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top