Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 162
Default referencing hidden sheets

If you turn off ScreenUpdating before the operation, and back on
afterwards, then the user won't see that there's a hidden sheet.
Truthfully though, even with screenupdating on most operations happen
so fast that the user wouldn't detect them anyway.

Application.ScreenUpdating = False
ActiveWorkbook.Sheets("YourHiddenSheet").Visible = True
'
' Your actions here
'
ActiveWorkbook.Sheets("YourHiddenSheet").Visible = False
Application.ScreenUpdating = True

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hidden rows/columns expand when referencing cells? tink Excel Worksheet Functions 1 October 9th 08 08:48 PM
Referencing sheets Techclerk Excel Discussion (Misc queries) 4 May 26th 08 12:25 AM
When referencing other Sheets JT Excel Discussion (Misc queries) 1 March 14th 07 05:36 PM
How do I avoid referencing hidden values in formulas like OFFSET? K Excel Worksheet Functions 2 July 14th 06 08:46 PM
referencing sheets libby Excel Programming 2 January 23rd 04 04:51 PM


All times are GMT +1. The time now is 09:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"