Results 1 to 4 of 4

Thread: Open invisible sheets in Excel

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Apr 2004
    Posts
    297

    Open invisible sheets in Excel

    Can it be done to open a sheet in Excel with macro which stays invisible?

  2. #2
    New Member
    Join Date
    Feb 2006
    Posts
    7

    Talking 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

  3. #3
    Frenzied Member zaza's Avatar
    Join Date
    Apr 2001
    Location
    Borneo Rainforest Habits: Scratching
    Posts
    1,486

    Re: Open invisible sheets in Excel

    You can still read to and write from sheets which are not visible. Try it.

    zaza

  4. #4
    New Member
    Join Date
    Feb 2006
    Posts
    7

    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
  •  



Click Here to Expand Forum to Full Width