Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
derwood
 
Posts: n/a
Default showing all tabs at bottom of page

i have a workbook with over 100 sheets . is there a way for these to be
tiled together vertically as opposed to horizontally across the page
and out of sight

  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default showing all tabs at bottom of page

Hi derwood

No, but you can right click on the arrows next to your first sheet tab.
Maybe you like that

--
Regards Ron de Bruin
http://www.rondebruin.nl


"derwood" wrote in message oups.com...
i have a workbook with over 100 sheets . is there a way for these to be
tiled together vertically as opposed to horizontally across the page
and out of sight



  #3   Report Post  
Jim May
 
Posts: n/a
Default showing all tabs at bottom of page

Hi derwood:

Hear's a technique I've used (where 100+ sheets are involved in a Workbook.
Create a New Sheet in the First Position (Far left - 1st in book as you see
them)
Name it "Index" (without the quotes).

Paste this code into a standard Module:

Sub ListWSNames()
Dim Ws As Integer
Dim iCol As Long, iRow As Long
With Worksheets("Index")
.Cells.ClearContents
iCol = 2: iRow = 1
For Ws = 2 To Worksheets.Count
.Cells(iRow, iCol) = Worksheets(Ws).Name
.Cells(iRow, iCol - 1) = Ws - 1
iRow = iRow + 1
If iRow Mod 21 = 0 Then
iCol = iCol + 2
iRow = 1
End If
Next
End With
Range("B1").Select
ActiveSheet.Range("A:N").Columns.AutoFit
End Sub

Then also while in the VBE environment double-click on the sheet "Index"
(you just created) and paste in this code:

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
Dim Ws As Worksheet
Dim WsName As String
WsName = Target.Value
Sheets(WsName).Activate
Cancel = True
End Sub

Now your set
First thing to do is Run Macro ListWSNames
From your spreadshhet, at the menu, click on Tools,
Macro, Macros... - Select LiatWSNames Click the Run Button.
View your new Index Sheet now;
All should be there including a auto-numbering of them.

Now, On any Cell (on the ws Index) containing a ws name, Double-Click the
name.

Will that work for you?
Even if your now out at sheet 99 XYZ, you can click
on the |< button and then see the Index sheet in order to quickly get back
to it.

Hope this helps,
Jim May






"Ron de Bruin" wrote in message
...
Hi derwood

No, but you can right click on the arrows next to your first sheet tab.
Maybe you like that

--
Regards Ron de Bruin
http://www.rondebruin.nl


"derwood" wrote in message
oups.com...
i have a workbook with over 100 sheets . is there a way for these to be
tiled together vertically as opposed to horizontally across the page
and out of sight





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to get a cell on a page to equal the bottom most cell on dif Learning Assisstant in need of help Excel Worksheet Functions 1 May 24th 05 09:50 PM
only last cell on page to have bottom border (cell area outline) Wiggum Excel Worksheet Functions 1 April 29th 05 03:53 PM
Tabs accross of bottom of sheet are not showing robert Excel Discussion (Misc queries) 3 April 22nd 05 09:29 PM
Page Numbering between tabs Jeff Excel Discussion (Misc queries) 1 March 21st 05 03:47 PM
how to print a row on the bottom of every page Punx Excel Discussion (Misc queries) 1 November 29th 04 04:20 PM


All times are GMT +1. The time now is 04:32 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"