Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,814
Default single file, show multiple tabs

Howdee all.
I have a need to show multiple tabs of a single workbook simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 28
Default single file, show multiple tabs

Do you mean multiple sheets at the same time?

"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,814
Default single file, show multiple tabs

Good morning Howard.
Ok, Single xlsx file is open.
I want to view two tabs (two worksheets within the single file)
simultaneously-- in the same manner that I can view two different files
simultaneously by arranging the windows by vertical, cascade, tiled, or
horizontal.

I looked in the help file as JLG said, and the windows arrange.... only
works for multiple FILES, not a single FILE on multiple worksheets. Unless
I'm missing something, which wouldn't surprise me at this point.....

Can this be done programmatically? -- since you can't do it without
creating a second file/workbook to place the other worksheet into.

Thank you for your help....



"Howard31" wrote:

Do you mean multiple sheets at the same time?

"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,049
Default single file, show multiple tabs

i don't get the question. in 2003 menu Tools/Options View tab, check the
Sheet Tabs box

2007 look in excel options / advanced then Display Options for This Workbook



"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,814
Default single file, show multiple tabs

Good morning Patrick,
Did as you said, I don't see anything that will allow the user to view
multiple worksheets within a single file simultaneously, as you can with
multiple files.

My goal is to display two different worksheets (within the single
file/workbook) as horizontally displayed to compare the data on each, to
verify accuracy between the two-- without having to switch back and forth
between each one.... it gets rather tedious/frustrating doing it manually.

Thank you for your help.


"Patrick Molloy" wrote:

i don't get the question. in 2003 menu Tools/Options View tab, check the
Sheet Tabs box

2007 look in excel options / advanced then Display Options for This Workbook



"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,049
Default single file, show multiple tabs

oh sorry. then in 2003 use, from the standard menu Window / New Window then
Window / Arrange


"Steve" wrote in message
...
Good morning Patrick,
Did as you said, I don't see anything that will allow the user to view
multiple worksheets within a single file simultaneously, as you can with
multiple files.

My goal is to display two different worksheets (within the single
file/workbook) as horizontally displayed to compare the data on each, to
verify accuracy between the two-- without having to switch back and forth
between each one.... it gets rather tedious/frustrating doing it manually.

Thank you for your help.


"Patrick Molloy" wrote:

i don't get the question. in 2003 menu Tools/Options View tab, check the
Sheet Tabs box

2007 look in excel options / advanced then Display Options for This
Workbook



"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook
simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,814
Default single file, show multiple tabs

Hi again.
Ok, don't use 2003 (am using 2007), and from what I can remember-- it didn't
have access that way back then either.
All to say that I've already tried those options before I posted.

At this point I'm curious if I can force the multiple arranged worksheets by
creating a UDF. Ever done that before?

Again, thank you for your help.


"Patrick Molloy" wrote:

oh sorry. then in 2003 use, from the standard menu Window / New Window then
Window / Arrange


"Steve" wrote in message
...
Good morning Patrick,
Did as you said, I don't see anything that will allow the user to view
multiple worksheets within a single file simultaneously, as you can with
multiple files.

My goal is to display two different worksheets (within the single
file/workbook) as horizontally displayed to compare the data on each, to
verify accuracy between the two-- without having to switch back and forth
between each one.... it gets rather tedious/frustrating doing it manually.

Thank you for your help.


"Patrick Molloy" wrote:

i don't get the question. in 2003 menu Tools/Options View tab, check the
Sheet Tabs box

2007 look in excel options / advanced then Display Options for This
Workbook



"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook
simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default single file, show multiple tabs

Steve, see if this helps.

Sub dk()
ActiveWorkbook.NewWindow
Windows.Arrange xlArrangeStyleVertical
Windows(2).Activate
Sheets(2).Activate
End Sub





"Steve" wrote:

Hi again.
Ok, don't use 2003 (am using 2007), and from what I can remember-- it didn't
have access that way back then either.
All to say that I've already tried those options before I posted.

At this point I'm curious if I can force the multiple arranged worksheets by
creating a UDF. Ever done that before?

Again, thank you for your help.


"Patrick Molloy" wrote:

oh sorry. then in 2003 use, from the standard menu Window / New Window then
Window / Arrange


"Steve" wrote in message
...
Good morning Patrick,
Did as you said, I don't see anything that will allow the user to view
multiple worksheets within a single file simultaneously, as you can with
multiple files.

My goal is to display two different worksheets (within the single
file/workbook) as horizontally displayed to compare the data on each, to
verify accuracy between the two-- without having to switch back and forth
between each one.... it gets rather tedious/frustrating doing it manually.

Thank you for your help.


"Patrick Molloy" wrote:

i don't get the question. in 2003 menu Tools/Options View tab, check the
Sheet Tabs box

2007 look in excel options / advanced then Display Options for This
Workbook



"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook
simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default single file, show multiple tabs

Steve, see if this helps.

Sub dk()
ActiveWorkbook.NewWindow
Windows.Arrange xlArrangeStyleVertical
Windows(2).Activate
Sheets(2).Activate
End Sub





"Steve" wrote:

Hi again.
Ok, don't use 2003 (am using 2007), and from what I can remember-- it didn't
have access that way back then either.
All to say that I've already tried those options before I posted.

At this point I'm curious if I can force the multiple arranged worksheets by
creating a UDF. Ever done that before?

Again, thank you for your help.


"Patrick Molloy" wrote:

oh sorry. then in 2003 use, from the standard menu Window / New Window then
Window / Arrange


"Steve" wrote in message
...
Good morning Patrick,
Did as you said, I don't see anything that will allow the user to view
multiple worksheets within a single file simultaneously, as you can with
multiple files.

My goal is to display two different worksheets (within the single
file/workbook) as horizontally displayed to compare the data on each, to
verify accuracy between the two-- without having to switch back and forth
between each one.... it gets rather tedious/frustrating doing it manually.

Thank you for your help.


"Patrick Molloy" wrote:

i don't get the question. in 2003 menu Tools/Options View tab, check the
Sheet Tabs box

2007 look in excel options / advanced then Display Options for This
Workbook



"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook
simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB

  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,814
Default single file, show multiple tabs

Hi again.
Ok, don't use 2003 (am using 2007), and from what I can remember-- it didn't
have access that way back then either.
All to say that I've already tried those options before I posted.

At this point I'm curious if I can force the multiple arranged worksheets by
creating a UDF. Ever done that before?

Again, thank you for your help.


"Patrick Molloy" wrote:

oh sorry. then in 2003 use, from the standard menu Window / New Window then
Window / Arrange


"Steve" wrote in message
...
Good morning Patrick,
Did as you said, I don't see anything that will allow the user to view
multiple worksheets within a single file simultaneously, as you can with
multiple files.

My goal is to display two different worksheets (within the single
file/workbook) as horizontally displayed to compare the data on each, to
verify accuracy between the two-- without having to switch back and forth
between each one.... it gets rather tedious/frustrating doing it manually.

Thank you for your help.


"Patrick Molloy" wrote:

i don't get the question. in 2003 menu Tools/Options View tab, check the
Sheet Tabs box

2007 look in excel options / advanced then Display Options for This
Workbook



"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook
simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB



  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,049
Default single file, show multiple tabs

i don't get the question. in 2003 menu Tools/Options View tab, check the
Sheet Tabs box

2007 look in excel options / advanced then Display Options for This Workbook



"Steve" wrote in message
...
Howdee all.
I have a need to show multiple tabs of a single workbook simultaneously.
In much the same way as one can do with multiple files-- cascade,
horizontal, tiled, vertical......
Is there any code to do this with?
Your helps are deeply appreciated.
Best.
SteveB


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
single file, show multiple tabs JLGWhiz[_2_] Excel Programming 0 June 3rd 09 01:16 AM
Trying to write macro to combine data in multiple tabs into a single tab. [email protected] Excel Programming 3 June 15th 07 04:13 PM
Can you separate multiple tabs each into their own file hammermw Excel Worksheet Functions 2 February 28th 07 07:37 PM
macro: copy multiple workbooks to multiple tabs in single book Michael Excel Programming 0 July 14th 06 04:53 PM
Help file show tabs Ron Excel Discussion (Misc queries) 0 August 30th 05 02:50 PM


All times are GMT +1. The time now is 03:21 PM.

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

About Us

"It's about Microsoft Excel"