|
-
Feb 21st, 2006, 01:39 AM
#1
Thread Starter
Hyperactive Member
Open invisible sheets in Excel
Can it be done to open a sheet in Excel with macro which stays invisible?
-
Feb 21st, 2006, 03:26 AM
#2
New Member
Re: Open invisible sheets in Excel
Hi,
Application.ScreenUpdating = False
Sheets(1).Visible = True
'Do your actions here
Sheets(1).Visible = False
Application.ScreenUpdating = True
This will stop the screen from updating while the sheet is made visible, meaning that it will not be displayed on the screen to a user. Once the work is done the sheet is made invisible again before turning on the ScreenUpdating.
Hope this helps.
Z
-
Feb 21st, 2006, 02:42 PM
#3
Re: Open invisible sheets in Excel
You can still read to and write from sheets which are not visible. Try it.
zaza
-
Feb 21st, 2006, 06:15 PM
#4
New Member
Re: Open invisible sheets in Excel
Can you really? I'm off to try it! Nice!
MZ
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|