Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I bought office home and student 2007 and the word excel programs has
'non-commercial use' in the title bar. How do I get rid of this in the title bar header of the program? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could try some code in the Thisworkbook module.
Don't know if will work since I don't use 2007 but no harm. Sub workbook_open() Application.Caption = "MYAPP" End Sub Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.Caption = "" End Sub Gord Dibben MS Excel MVP On Thu, 15 Mar 2007 09:32:47 -0700, wnkg wrote: I bought office home and student 2007 and the word excel programs has 'non-commercial use' in the title bar. How do I get rid of this in the title bar header of the program? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy the "Title" Field from windows explorer to excel? | New Users to Excel | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
how can I use "filter" but keep "title" row in sight? | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
Use "PROPER" to change UPPERCASE text to Title Case on worksheet | Excel Worksheet Functions |