Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Friends,
Can someone help in writing my team's name in the excel? The name should come inside the border. (In excel, below the sheet tab, you can always see a command "READY".) i want to display the name near to the text "READY"..(making more clear - if you right click the mentioned space you can select count, sum, average etc) Thanks in advance for your time Jithu |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Jithu
Application.statusbar = "MyTeamName" -- Kind regards, Niek Otten Microsoft MVP - Excel "Jithu" wrote in message ... | Hi Friends, | | Can someone help in writing my team's name in the excel? | | The name should come inside the border. (In excel, below the sheet tab, you | can always see a command "READY".) i want to display the name near to the | text "READY"..(making more clear - if you right click the mentioned space you | can select count, sum, average etc) | | Thanks in advance for your time | | Jithu |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Private Sub Workbook_Open()
Application.StatusBar = "MyTeamName" End Sub Private Sub Workbook_BeforeClose(Cancel As Boolean) Application.StatusBar = "" End Sub Placed in Thisworkbook module. You could alternatively place MyTeamName in the Title Bar at top of Window. Private Sub Workbook_Open() ActiveWindow.Caption = "MyTeamName" End Sub Private Sub Workbook_BeforeClose(Cancel As Boolean) ActiveWindow.Caption = "" End Sub Gord Dibben MS Excel MVP On Tue, 6 Nov 2007 04:21:01 -0800, Jithu wrote: Hi Friends, Can someone help in writing my team's name in the excel? The name should come inside the border. (In excel, below the sheet tab, you can always see a command "READY".) i want to display the name near to the text "READY"..(making more clear - if you right click the mentioned space you can select count, sum, average etc) Thanks in advance for your time Jithu |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Writing to csv | Excel Discussion (Misc queries) | |||
writing a formula | Excel Discussion (Misc queries) | |||
Writing a formula | Excel Discussion (Misc queries) | |||
Adjusting toolbar size, restore toolbar | Excel Discussion (Misc queries) | |||
Writing a formula | Excel Worksheet Functions |