+ Reply to Thread
Results 1 to 4 of 4

Allow multiple rows of worksheet tabs for complex spreadsheets

  1. #1
    Peter Gross
    Guest

    Allow multiple rows of worksheet tabs for complex spreadsheets

    In complex Excel spreadsheets, the current single line for worksheet tabs is
    restrictive.

    Instead, please consider including a second or third row option that will
    allow for numerous worksheets to be accessible at one time.

    This will save time instead of having to use the |< < > >| buttons.



    ----------------
    This post is a suggestion for Microsoft, and Microsoft responds to the
    suggestions with the most votes. To vote for this suggestion, click the "I
    Agree" button in the message pane. If you do not see the button, follow this
    link to open the suggestion in the Microsoft Web-based Newsreader and then
    click "I Agree" in the message pane.

    http://www.microsoft.com/office/comm...lic.excel.misc

  2. #2
    Registered User
    Join Date
    01-11-2006
    Posts
    1

    Try Right Clicking

    If you right click over the buttons you can pick from a larger set of Worksheets, but not all of them. You can pick more sheets which opens a dialogue box that allows you to pick the sheet you want.

  3. #3
    Bob Phillips
    Guest

    Re: Allow multiple rows of worksheet tabs for complex spreadsheets

    How about trying this

    I add a drop-down to the Formatting toolbar, and in ThisWorkbook, I setup up
    the toolbar buton and populate it so


    Private Workbook_Open()
    With Application.CommandBars("Formatting")
    With .Controls.Add(Type:=msoControlDropdown, temporary:=True)
    .Caption = "SheetGoto"
    .OnAction = "GotoSheet"
    End With End With
    End Sub


    Private Sub Workbook_Activate()
    Dim i As Long


    With Application.CommandBars("Formatting").Controls("SheetGoto")
    .Clear
    For i = 1 To Wb.Sheets.Count
    .AddItem Wb.Sheets(i).Name
    Next i
    .ListIndex = 1
    End With
    End Sub


    In a standard code module I add this macro to actiavte the sheet


    Private Sub GotoSheet()
    With Application.CommandBars.ActionControl
    ActiveWorkbook.Sheets(.Text).Activate
    End With
    End Sub


    --

    HTH

    Bob Phillips

    (remove nothere from the email address if mailing direct)

    "Peter Gross" <Peter [email protected]> wrote in message
    news:[email protected]...
    > In complex Excel spreadsheets, the current single line for worksheet tabs

    is
    > restrictive.
    >
    > Instead, please consider including a second or third row option that will
    > allow for numerous worksheets to be accessible at one time.
    >
    > This will save time instead of having to use the |< < > >| buttons.
    >
    >
    >
    > ----------------
    > This post is a suggestion for Microsoft, and Microsoft responds to the
    > suggestions with the most votes. To vote for this suggestion, click the "I
    > Agree" button in the message pane. If you do not see the button, follow

    this
    > link to open the suggestion in the Microsoft Web-based Newsreader and then
    > click "I Agree" in the message pane.
    >
    >

    http://www.microsoft.com/office/comm...id=34febb21-51
    6c-43e3-9d5a-c945b090cdfe&dg=microsoft.public.excel.misc



  4. #4
    Dave O
    Guest

    Re: Allow multiple rows of worksheet tabs for complex spreadsheets

    Peter-
    Did you know you can display multiple tabs on screen simultaneously?
    With your sprdsht open, click >Window >New. Notice the filename (upper
    left corner) now includes a :1 or :2 suffix, indicating which window is
    visible. Click >Window >Arrange and select one of the display options
    (I prefer horizontal) to show both windows at once. Select window 1
    and indicate which tab to display; select window 2 and indicate another
    tab to display. A change made to one window is made to the other
    window, so you can see the results of a change as it ripples throughout
    the sprdsht.


+ 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