Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 389
Default Excel open files on task bar


I have a basic issue that I was thinking there may be a programming solution
to.

For example: Lets say I have 5 excel files open. Then I want to change
files and I do not want to hit Ctrl+Tab and cycle through the files....that
gets too hard on my eyes. Then if I click on the Icon on the Task Bar it
does not identify the file that is active and I really do not like the Window
Menu Bar item because it has other stuff on it also.

Does anyone have a solution that is clean, clear and quick to show what
files are open and make selecting the desired file easier?

Also, why on the task bar it cannot somehow identify which file you are in.
Someone told me just look at the file name on the window ... but that is too
much work ... ie (the system should identify better)

Thank you for your help,

Steven
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 834
Default Excel open files on task bar

That works fine for me, although you don't need the =

=COUNTIFS('Policy Log'!D3:D300, "Case Mgmt.", 'Policy Log'!E3:E300,
"Active")

This is an Excel 2007/2010 specific function, if you have Excel 2003 use

=SUMPRODUCT(--('Policy Log'!D3:D300="Case Mgmt."),--('Policy
Log'!E3:E300,="Active"))

HTH

Bob

"Steven" wrote in message
...

I have a basic issue that I was thinking there may be a programming
solution
to.

For example: Lets say I have 5 excel files open. Then I want to change
files and I do not want to hit Ctrl+Tab and cycle through the
files....that
gets too hard on my eyes. Then if I click on the Icon on the Task Bar it
does not identify the file that is active and I really do not like the
Window
Menu Bar item because it has other stuff on it also.

Does anyone have a solution that is clean, clear and quick to show what
files are open and make selecting the desired file easier?

Also, why on the task bar it cannot somehow identify which file you are
in.
Someone told me just look at the file name on the window ... but that is
too
much work ... ie (the system should identify better)

Thank you for your help,

Steven



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 389
Default Excel open files on task bar


Bob,

Were you answering this post? If so, I dont follow.

Thanks,

Steven

"Bob Phillips" wrote:

That works fine for me, although you don't need the =

=COUNTIFS('Policy Log'!D3:D300, "Case Mgmt.", 'Policy Log'!E3:E300,
"Active")

This is an Excel 2007/2010 specific function, if you have Excel 2003 use

=SUMPRODUCT(--('Policy Log'!D3:D300="Case Mgmt."),--('Policy
Log'!E3:E300,="Active"))

HTH

Bob

"Steven" wrote in message
...

I have a basic issue that I was thinking there may be a programming
solution
to.

For example: Lets say I have 5 excel files open. Then I want to change
files and I do not want to hit Ctrl+Tab and cycle through the
files....that
gets too hard on my eyes. Then if I click on the Icon on the Task Bar it
does not identify the file that is active and I really do not like the
Window
Menu Bar item because it has other stuff on it also.

Does anyone have a solution that is clean, clear and quick to show what
files are open and make selecting the desired file easier?

Also, why on the task bar it cannot somehow identify which file you are
in.
Someone told me just look at the file name on the window ... but that is
too
much work ... ie (the system should identify better)

Thank you for your help,

Steven



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 834
Default Excel open files on task bar

Steven,

I was answering A post, you can see that from the detailed level of my
answer, but it clearly wasn't this one. I wonder what happened there <g

Bob

"Steven" wrote in message
...

Bob,

Were you answering this post? If so, I dont follow.

Thanks,

Steven

"Bob Phillips" wrote:

That works fine for me, although you don't need the =

=COUNTIFS('Policy Log'!D3:D300, "Case Mgmt.", 'Policy Log'!E3:E300,
"Active")

This is an Excel 2007/2010 specific function, if you have Excel 2003 use

=SUMPRODUCT(--('Policy Log'!D3:D300="Case Mgmt."),--('Policy
Log'!E3:E300,="Active"))

HTH

Bob

"Steven" wrote in message
...

I have a basic issue that I was thinking there may be a programming
solution
to.

For example: Lets say I have 5 excel files open. Then I want to
change
files and I do not want to hit Ctrl+Tab and cycle through the
files....that
gets too hard on my eyes. Then if I click on the Icon on the Task Bar
it
does not identify the file that is active and I really do not like the
Window
Menu Bar item because it has other stuff on it also.

Does anyone have a solution that is clean, clear and quick to show what
files are open and make selecting the desired file easier?

Also, why on the task bar it cannot somehow identify which file you
are
in.
Someone told me just look at the file name on the window ... but that
is
too
much work ... ie (the system should identify better)

Thank you for your help,

Steven



.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Excel open files on task bar

You have pretty well eliminated all your options.

Not on Taskbar.

No CTRL + Tab

No WindowSelect

Where would you like to see the list?

I have an add-in where all my macros are stored. It opens with Excel.

I have this code in Thisworkbook to eliminate the "Microsoft Excel" and
leave just workbook name on Taskbar.

Private Sub Workbook_Open()
Application.Caption = " " 'note space
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.Caption = "" 'note no space
End Sub

You could stick it in your Personal.xls if you have one.

NOTE: when your Taskbar gets too full, all the workbooks will stack under
"Microsoft Office Excel".

You can select using the dropdown arrow.


Gord Dibben MS Excel MVP

On Mon, 18 Jan 2010 15:36:01 -0800, Steven
wrote:


I have a basic issue that I was thinking there may be a programming solution
to.

For example: Lets say I have 5 excel files open. Then I want to change
files and I do not want to hit Ctrl+Tab and cycle through the files....that
gets too hard on my eyes. Then if I click on the Icon on the Task Bar it
does not identify the file that is active and I really do not like the Window
Menu Bar item because it has other stuff on it also.

Does anyone have a solution that is clean, clear and quick to show what
files are open and make selecting the desired file easier?

Also, why on the task bar it cannot somehow identify which file you are in.
Someone told me just look at the file name on the window ... but that is too
much work ... ie (the system should identify better)

Thank you for your help,

Steven




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 389
Default Excel open files on task bar

Gord,

That is helpful. It is nice not to see the redundant .xls which just makes
it harder to read. I think I would be happy if when you click on the taskbar
Icon it would indicate which window you are in.

Thank you for your idea, it definitely is an improvement,

Steven

"Gord Dibben" wrote:

You have pretty well eliminated all your options.

Not on Taskbar.

No CTRL + Tab

No WindowSelect

Where would you like to see the list?

I have an add-in where all my macros are stored. It opens with Excel.

I have this code in Thisworkbook to eliminate the "Microsoft Excel" and
leave just workbook name on Taskbar.

Private Sub Workbook_Open()
Application.Caption = " " 'note space
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.Caption = "" 'note no space
End Sub

You could stick it in your Personal.xls if you have one.

NOTE: when your Taskbar gets too full, all the workbooks will stack under
"Microsoft Office Excel".

You can select using the dropdown arrow.


Gord Dibben MS Excel MVP

On Mon, 18 Jan 2010 15:36:01 -0800, Steven
wrote:


I have a basic issue that I was thinking there may be a programming solution
to.

For example: Lets say I have 5 excel files open. Then I want to change
files and I do not want to hit Ctrl+Tab and cycle through the files....that
gets too hard on my eyes. Then if I click on the Icon on the Task Bar it
does not identify the file that is active and I really do not like the Window
Menu Bar item because it has other stuff on it also.

Does anyone have a solution that is clean, clear and quick to show what
files are open and make selecting the desired file easier?

Also, why on the task bar it cannot somehow identify which file you are in.
Someone told me just look at the file name on the window ... but that is too
much work ... ie (the system should identify better)

Thank you for your help,

Steven


.

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 389
Default Excel open files on task bar

I think I misunderstood. What I thought it was doing is not actually. I
guess I am back to thinking that when the files show from the taskbar it
should identify which window the user is in.

Thanks

"Steven" wrote:

Gord,

That is helpful. It is nice not to see the redundant .xls which just makes
it harder to read. I think I would be happy if when you click on the taskbar
Icon it would indicate which window you are in.

Thank you for your idea, it definitely is an improvement,

Steven

"Gord Dibben" wrote:

You have pretty well eliminated all your options.

Not on Taskbar.

No CTRL + Tab

No WindowSelect

Where would you like to see the list?

I have an add-in where all my macros are stored. It opens with Excel.

I have this code in Thisworkbook to eliminate the "Microsoft Excel" and
leave just workbook name on Taskbar.

Private Sub Workbook_Open()
Application.Caption = " " 'note space
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.Caption = "" 'note no space
End Sub

You could stick it in your Personal.xls if you have one.

NOTE: when your Taskbar gets too full, all the workbooks will stack under
"Microsoft Office Excel".

You can select using the dropdown arrow.


Gord Dibben MS Excel MVP

On Mon, 18 Jan 2010 15:36:01 -0800, Steven
wrote:


I have a basic issue that I was thinking there may be a programming solution
to.

For example: Lets say I have 5 excel files open. Then I want to change
files and I do not want to hit Ctrl+Tab and cycle through the files....that
gets too hard on my eyes. Then if I click on the Icon on the Task Bar it
does not identify the file that is active and I really do not like the Window
Menu Bar item because it has other stuff on it also.

Does anyone have a solution that is clean, clear and quick to show what
files are open and make selecting the desired file easier?

Also, why on the task bar it cannot somehow identify which file you are in.
Someone told me just look at the file name on the window ... but that is too
much work ... ie (the system should identify better)

Thank you for your help,

Steven


.

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
Open the Excel Workbooks in Windows Scheduled Task March Excel Programming 0 January 20th 09 06:08 PM
Open MS Project From Excel & read Task Properties List MVP Wannabe[_2_] Excel Programming 6 November 21st 07 02:27 PM
Open new window task pane upon launching Excel David Excel Discussion (Misc queries) 0 July 11th 06 11:29 PM
Can I add files to the getting started task pane in Excel? Steve Barnett Excel Discussion (Misc queries) 0 February 3rd 06 12:29 PM
How do I display each Excel file I open in the task bar bocjoel Excel Discussion (Misc queries) 3 September 28th 05 08:04 PM


All times are GMT +1. The time now is 09:43 AM.

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"