PC Review


Reply
Thread Tools Rate Thread

Alternate selection methof for many tabs

 
 
Phil Smith
Guest
Posts: n/a
 
      22nd Aug 2007
I have a workbook that will have about 30 or so sheets. Using that
little scroll bar to choose various worksheets within is a pain in the but.

1) Is there a way to sort these tabs alphabetically and automatically?

2) Is there any way to pull up a list of them where one can be selected
from that list?

Thanx
 
Reply With Quote
 
 
 
 
David Hilberg
Guest
Posts: n/a
 
      22nd Aug 2007
Phil Smith wrote:
> Using that
> little scroll bar to choose various worksheets within is a pain in the but.


If you right-click the tiny arrows, you get a clickable list of the
first 15 sheets, and you can click "More Sheets" to get the whole list.
Or is that what you already were doing?
 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      22nd Aug 2007
Phil

How about a sheet navigation bar from Debra Dalglesih?

http://www.contextures.on.ca/xlToolbar01.html

Or Bob Phillips' Browsesheets macro?

See this google search result. All one line for the URL

http://groups.google.com/group/micro...c19464f875bd25

To sort the sheets, if you want them sorted, see Chip Pearson's site for code.

http://www.cpearson.com/excel/sortws.htm


Gord Dibben MS Excel MVP

On Wed, 22 Aug 2007 14:31:08 -0700, Phil Smith <(E-Mail Removed)> wrote:

>I have a workbook that will have about 30 or so sheets. Using that
>little scroll bar to choose various worksheets within is a pain in the but.
>
>1) Is there a way to sort these tabs alphabetically and automatically?
>
>2) Is there any way to pull up a list of them where one can be selected
>from that list?
>
>Thanx


 
Reply With Quote
 
Phil Smith
Guest
Posts: n/a
 
      22nd Aug 2007
Nope. That is a shortcut I did not know about. Thanx.




David Hilberg wrote:
> Phil Smith wrote:
>
>> Using that little scroll bar to choose various worksheets within is a
>> pain in the but.

>
>
> If you right-click the tiny arrows, you get a clickable list of the
> first 15 sheets, and you can click "More Sheets" to get the whole list.
> Or is that what you already were doing?

 
Reply With Quote
 
Jack Sons
Guest
Posts: n/a
 
      22nd Aug 2007
Gord,

Debras solution works fine, but when I open Excel I would like to apear the
floating sheet navigation bar automatically (fixed) in the bar below the
sheet tabs. I don't know the name of it, it seems to be an extra bar when I
push the navigation bar to the lowest place on screen that is possible.

Even nicer would be one bar lower, that is the light colored bar just above
the lowest bar (blue, it contains the start button and the minimized
workbooks).

Is that possible?

Jack Sons
The Netherlands



"Gord Dibben" <gorddibbATshawDOTca> schreef in bericht
news:(E-Mail Removed)...
> Phil
>
> How about a sheet navigation bar from Debra Dalglesih?
>
> http://www.contextures.on.ca/xlToolbar01.html
>
> Or Bob Phillips' Browsesheets macro?
>
> See this google search result. All one line for the URL
>
> http://groups.google.com/group/micro...c19464f875bd25
>
> To sort the sheets, if you want them sorted, see Chip Pearson's site for
> code.
>
> http://www.cpearson.com/excel/sortws.htm
>
>
> Gord Dibben MS Excel MVP
>
> On Wed, 22 Aug 2007 14:31:08 -0700, Phil Smith <(E-Mail Removed)> wrote:
>
>>I have a workbook that will have about 30 or so sheets. Using that
>>little scroll bar to choose various worksheets within is a pain in the
>>but.
>>
>>1) Is there a way to sort these tabs alphabetically and automatically?
>>
>>2) Is there any way to pull up a list of them where one can be selected
>>from that list?
>>
>>Thanx

>



 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      23rd Aug 2007
The bar in question is the Status Bar.

I don't know how to dock the toolbar onto the status bar as you ask.

Not enough skills in VBA.

You can drag it down there and dock it but when you close then re-open Excel it
will float again.

Perhaps Dave or Debra can assist?

That's why I personally like Bob's Browsesheets macro. Just stick a button on a
Toolbar and click the button to navigate the sheets.


Gord

On Thu, 23 Aug 2007 00:40:44 +0200, "Jack Sons" <(E-Mail Removed)> wrote:

>Gord,
>
>Debras solution works fine, but when I open Excel I would like to apear the
>floating sheet navigation bar automatically (fixed) in the bar below the
>sheet tabs. I don't know the name of it, it seems to be an extra bar when I
>push the navigation bar to the lowest place on screen that is possible.
>
>Even nicer would be one bar lower, that is the light colored bar just above
>the lowest bar (blue, it contains the start button and the minimized
>workbooks).
>
>Is that possible?
>
>Jack Sons
>The Netherlands
>
>
>
>"Gord Dibben" <gorddibbATshawDOTca> schreef in bericht
>news:(E-Mail Removed)...
>> Phil
>>
>> How about a sheet navigation bar from Debra Dalglesih?
>>
>> http://www.contextures.on.ca/xlToolbar01.html
>>
>> Or Bob Phillips' Browsesheets macro?
>>
>> See this google search result. All one line for the URL
>>
>> http://groups.google.com/group/micro...c19464f875bd25
>>
>> To sort the sheets, if you want them sorted, see Chip Pearson's site for
>> code.
>>
>> http://www.cpearson.com/excel/sortws.htm
>>
>>
>> Gord Dibben MS Excel MVP
>>
>> On Wed, 22 Aug 2007 14:31:08 -0700, Phil Smith <(E-Mail Removed)> wrote:
>>
>>>I have a workbook that will have about 30 or so sheets. Using that
>>>little scroll bar to choose various worksheets within is a pain in the
>>>but.
>>>
>>>1) Is there a way to sort these tabs alphabetically and automatically?
>>>
>>>2) Is there any way to pull up a list of them where one can be selected
>>>from that list?
>>>
>>>Thanx

>>

>


 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      23rd Aug 2007
Add one line:

With cb
.Visible = True
.Position = msoBarBottom '<-- Added

Jack Sons wrote:
>
> Gord,
>
> Debras solution works fine, but when I open Excel I would like to apear the
> floating sheet navigation bar automatically (fixed) in the bar below the
> sheet tabs. I don't know the name of it, it seems to be an extra bar when I
> push the navigation bar to the lowest place on screen that is possible.
>
> Even nicer would be one bar lower, that is the light colored bar just above
> the lowest bar (blue, it contains the start button and the minimized
> workbooks).
>
> Is that possible?
>
> Jack Sons
> The Netherlands
>
> "Gord Dibben" <gorddibbATshawDOTca> schreef in bericht
> news:(E-Mail Removed)...
> > Phil
> >
> > How about a sheet navigation bar from Debra Dalglesih?
> >
> > http://www.contextures.on.ca/xlToolbar01.html
> >
> > Or Bob Phillips' Browsesheets macro?
> >
> > See this google search result. All one line for the URL
> >
> > http://groups.google.com/group/micro...c19464f875bd25
> >
> > To sort the sheets, if you want them sorted, see Chip Pearson's site for
> > code.
> >
> > http://www.cpearson.com/excel/sortws.htm
> >
> >
> > Gord Dibben MS Excel MVP
> >
> > On Wed, 22 Aug 2007 14:31:08 -0700, Phil Smith <(E-Mail Removed)> wrote:
> >
> >>I have a workbook that will have about 30 or so sheets. Using that
> >>little scroll bar to choose various worksheets within is a pain in the
> >>but.
> >>
> >>1) Is there a way to sort these tabs alphabetically and automatically?
> >>
> >>2) Is there any way to pull up a list of them where one can be selected
> >>from that list?
> >>
> >>Thanx

> >


--

Dave Peterson
 
Reply With Quote
 
Jack Sons
Guest
Posts: n/a
 
      23rd Aug 2007
Dave,

Marvelous! Thank you.

Jack.

"Dave Peterson" <(E-Mail Removed)> schreef in bericht
news:(E-Mail Removed)...
> Add one line:
>
> With cb
> .Visible = True
> .Position = msoBarBottom '<-- Added
>
> Jack Sons wrote:
>>
>> Gord,
>>
>> Debras solution works fine, but when I open Excel I would like to apear
>> the
>> floating sheet navigation bar automatically (fixed) in the bar below the
>> sheet tabs. I don't know the name of it, it seems to be an extra bar when
>> I
>> push the navigation bar to the lowest place on screen that is possible.
>>
>> Even nicer would be one bar lower, that is the light colored bar just
>> above
>> the lowest bar (blue, it contains the start button and the minimized
>> workbooks).
>>
>> Is that possible?
>>
>> Jack Sons
>> The Netherlands
>>
>> "Gord Dibben" <gorddibbATshawDOTca> schreef in bericht
>> news:(E-Mail Removed)...
>> > Phil
>> >
>> > How about a sheet navigation bar from Debra Dalglesih?
>> >
>> > http://www.contextures.on.ca/xlToolbar01.html
>> >
>> > Or Bob Phillips' Browsesheets macro?
>> >
>> > See this google search result. All one line for the URL
>> >
>> > http://groups.google.com/group/micro...c19464f875bd25
>> >
>> > To sort the sheets, if you want them sorted, see Chip Pearson's site
>> > for
>> > code.
>> >
>> > http://www.cpearson.com/excel/sortws.htm
>> >
>> >
>> > Gord Dibben MS Excel MVP
>> >
>> > On Wed, 22 Aug 2007 14:31:08 -0700, Phil Smith <(E-Mail Removed)>
>> > wrote:
>> >
>> >>I have a workbook that will have about 30 or so sheets. Using that
>> >>little scroll bar to choose various worksheets within is a pain in the
>> >>but.
>> >>
>> >>1) Is there a way to sort these tabs alphabetically and automatically?
>> >>
>> >>2) Is there any way to pull up a list of them where one can be selected
>> >>from that list?
>> >>
>> >>Thanx
>> >

>
> --
>
> Dave Peterson



 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      23rd Aug 2007
Thanks from me also Dave

Gord

On Wed, 22 Aug 2007 21:11:29 -0500, Dave Peterson <(E-Mail Removed)>
wrote:

>Add one line:
>
> With cb
> .Visible = True
> .Position = msoBarBottom '<-- Added
>
>Jack Sons wrote:
>>
>> Gord,
>>
>> Debras solution works fine, but when I open Excel I would like to apear the
>> floating sheet navigation bar automatically (fixed) in the bar below the
>> sheet tabs. I don't know the name of it, it seems to be an extra bar when I
>> push the navigation bar to the lowest place on screen that is possible.
>>
>> Even nicer would be one bar lower, that is the light colored bar just above
>> the lowest bar (blue, it contains the start button and the minimized
>> workbooks).
>>
>> Is that possible?
>>
>> Jack Sons
>> The Netherlands
>>
>> "Gord Dibben" <gorddibbATshawDOTca> schreef in bericht
>> news:(E-Mail Removed)...
>> > Phil
>> >
>> > How about a sheet navigation bar from Debra Dalglesih?
>> >
>> > http://www.contextures.on.ca/xlToolbar01.html
>> >
>> > Or Bob Phillips' Browsesheets macro?
>> >
>> > See this google search result. All one line for the URL
>> >
>> > http://groups.google.com/group/micro...c19464f875bd25
>> >
>> > To sort the sheets, if you want them sorted, see Chip Pearson's site for
>> > code.
>> >
>> > http://www.cpearson.com/excel/sortws.htm
>> >
>> >
>> > Gord Dibben MS Excel MVP
>> >
>> > On Wed, 22 Aug 2007 14:31:08 -0700, Phil Smith <(E-Mail Removed)> wrote:
>> >
>> >>I have a workbook that will have about 30 or so sheets. Using that
>> >>little scroll bar to choose various worksheets within is a pain in the
>> >>but.
>> >>
>> >>1) Is there a way to sort these tabs alphabetically and automatically?
>> >>
>> >>2) Is there any way to pull up a list of them where one can be selected
>> >>from that list?
>> >>
>> >>Thanx
>> >


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Print workbook tabs based on a selection list Cpinto Microsoft Excel Misc 1 25th Jun 2009 05:49 AM
How do I alternate shading of rows, Excel 2007, no new tabs. jrgspyder Microsoft Excel Misc 1 11th Jun 2009 03:21 AM
sheet tabs and selection =?Utf-8?B?U1lCUw==?= Microsoft Excel Programming 0 20th Jul 2005 11:31 AM
alternate series selection method? Hammer_757 Microsoft Excel Charting 2 2nd Jun 2004 10:45 PM
Page Selection Tabs not displaying =?Utf-8?B?S2hpbWFpcmE=?= Microsoft Frontpage 2 5th Dec 2003 02:48 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:07 AM.