+ Reply to Thread
Results 1 to 2 of 2

Unhiding multiple worksheets in Excel 2000

Hybrid View

  1. #1
    Juana Cafe
    Guest

    Unhiding multiple worksheets in Excel 2000

    Any way to unhide multipe sheets without going to Format>Sheet>Unhide for
    EACH sheet individually ? I am talking about a very large number of hidden
    sheets in multiple workbooks, so a macro would probably not work. Are there
    any keyboard shortcuts ?? Excel doesn't offer the Shift+click/Ctrl+click
    selection in the Unhide box. Thank you.

  2. #2
    JE McGimpsey
    Guest

    Re: Unhiding multiple worksheets in Excel 2000

    Only using a macro. One way:

    Public Sub UnhideAll()
    Dim ws As Worksheet
    For Each ws in Worksheets
    ws.Visible = True
    Next ws
    End Sub

    If you're unfamiliar with macros, see

    http://www.mvps.org/dmcritchie/excel/getstarted.htm



    In article <4935ECDF-B333-4B1F-B940-32B38C977036@microsoft.com>,
    "Juana Cafe" <JuanaCafe@discussions.microsoft.com> wrote:

    > Any way to unhide multipe sheets without going to Format>Sheet>Unhide for
    > EACH sheet individually ? I am talking about a very large number of hidden
    > sheets in multiple workbooks, so a macro would probably not work. Are there
    > any keyboard shortcuts ?? Excel doesn't offer the Shift+click/Ctrl+click
    > selection in the Unhide box. Thank you.


+ 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