Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way in VBA to cause a worksheet to display when exiting the
workbook. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way in VBA to cause a worksheet to display
when exiting the workbook. Yes, put code like this in the ThisWorkbook module. Private Sub Workbook_BeforeClose(Cancel As Boolean) Sheets("fill_name").Activate End Sub HTH, Merjet |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
James,
It could be done with the Workbook_Deactivate event , but .. Wouldn't this mean that you could never switch to another workbook, as by making a worksheet in that workbook visible, you re-enter it? -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "JAMES SYLVESTERSR" wrote in message ink.net... Is there a way in VBA to cause a worksheet to display when exiting the workbook. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to lookup a sheet, number, then display in origonal sheet | New Users to Excel | |||
How do I change the Excel sheet tab bar to display more sheet tabs | Excel Discussion (Misc queries) | |||
Odd display - cant see sheet tabs or top bar! | Excel Discussion (Misc queries) | |||
Search and Display Sheet Name | Excel Discussion (Misc queries) | |||
Dynamically display subset rows from one sheet in another sheet? | Excel Programming |