+ Reply to Thread
Results 1 to 2 of 2

How to: Hide the Action of a Macro

  1. #1
    Jasper
    Guest

    How to: Hide the Action of a Macro

    I have severall macro's doing a lot of work and taking considerable time to
    do so. As a result the user sees a lot of things I'd rather have they didn't
    see.

    My Question: "How can I show the Sheet "Index" while the macro is running?"

    Thanks in advance!

  2. #2
    Harald Staff
    Guest

    Re: How to: Hide the Action of a Macro

    Sub Test()
    Dim i As Long, j As Long
    Sheets("Index").Select
    Application.ScreenUpdating = False
    For j = 1 To 200
    For i = 1 To ActiveWorkbook.Sheets.Count
    Sheets(i).Activate
    Next
    Next
    Application.ScreenUpdating = True
    End Sub


    HTH. Best wishes Harald

    "Jasper" <[email protected]> skrev i melding
    news:[email protected]...
    > I have severall macro's doing a lot of work and taking considerable time

    to
    > do so. As a result the user sees a lot of things I'd rather have they

    didn't
    > see.
    >
    > My Question: "How can I show the Sheet "Index" while the macro is

    running?"
    >
    > Thanks in advance!




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1