Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Open the Excel Workbooks in Windows Scheduled Task | Excel Programming | |||
Open MS Project From Excel & read Task Properties List | Excel Programming | |||
Open new window task pane upon launching Excel | Excel Discussion (Misc queries) | |||
Can I add files to the getting started task pane in Excel? | Excel Discussion (Misc queries) | |||
How do I display each Excel file I open in the task bar | Excel Discussion (Misc queries) |