Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 160
Default Auto_Open/Close Mods

The below subs execute when the workbook is
opened/closed. I need to add code to turn off row and
column headings in the Auto_Open, and to restore the
headings in the Auto_Close. If anything else could use
improvement, please suggest. Thanks, Phil

Option Explicit

Sub Auto_Open()
Dim ws As Worksheet

Application.ScreenUpdating = False
Application.DisplayFullScreen = True
For Each ws In Worksheets
If ws.Visible = xlSheetVisible Then
ws.Select
Application.GoTo ws.Range("A1"), True
ActiveWindow.DisplayGridlines = False
ActiveWindow.DisplayWorkbookTabs = False
End If
Next

Worksheets("Customer").Select
ActiveWindow.Zoom = 62
Worksheets("Financial").Select
ActiveWindow.Zoom = 62
Worksheets("Learning and Growth").Select
ActiveWindow.Zoom = 62
Worksheets("Internal Business Process").Select
ActiveWindow.Zoom = 62
Worksheets("Internal Business Process").Select
ActiveWindow.Zoom = 62


Worksheets("Scorecard").Select
ActiveWindow.Zoom = 62
ThisWorkbook.Colors(7) = RGB(255, 124, 128)

Application.AutoPercentEntry = True
Application.ScreenUpdating = True

End Sub

Sub Auto_Close()
Application.DisplayFullScreen = False
ActiveWindow.DisplayWorkbookTabs = True
End Sub

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Auto_Open/Close Mods

Turn on the macro recorder and perform the task manually. Then you will see
the code.

--
Regards,
Tom Ogilvy

"Phil Hageman" wrote in message
...
The below subs execute when the workbook is
opened/closed. I need to add code to turn off row and
column headings in the Auto_Open, and to restore the
headings in the Auto_Close. If anything else could use
improvement, please suggest. Thanks, Phil

Option Explicit

Sub Auto_Open()
Dim ws As Worksheet

Application.ScreenUpdating = False
Application.DisplayFullScreen = True
For Each ws In Worksheets
If ws.Visible = xlSheetVisible Then
ws.Select
Application.GoTo ws.Range("A1"), True
ActiveWindow.DisplayGridlines = False
ActiveWindow.DisplayWorkbookTabs = False
End If
Next

Worksheets("Customer").Select
ActiveWindow.Zoom = 62
Worksheets("Financial").Select
ActiveWindow.Zoom = 62
Worksheets("Learning and Growth").Select
ActiveWindow.Zoom = 62
Worksheets("Internal Business Process").Select
ActiveWindow.Zoom = 62
Worksheets("Internal Business Process").Select
ActiveWindow.Zoom = 62


Worksheets("Scorecard").Select
ActiveWindow.Zoom = 62
ThisWorkbook.Colors(7) = RGB(255, 124, 128)

Application.AutoPercentEntry = True
Application.ScreenUpdating = True

End Sub

Sub Auto_Close()
Application.DisplayFullScreen = False
ActiveWindow.DisplayWorkbookTabs = True
End Sub



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
Coordinated Auto_Open/Close Phil Hageman[_3_] Excel Programming 0 November 19th 03 05:14 PM
Auto_Open Check date and Close DLS[_3_] Excel Programming 2 August 5th 03 05:28 AM
Auto_Open Check date and Close Tom Ogilvy Excel Programming 0 August 3rd 03 03:54 AM
Auto_Open Check date and Close Dan Smith Excel Programming 0 August 2nd 03 10:39 PM
Auto_Open Check date and Close DLS[_2_] Excel Programming 1 August 1st 03 09:21 PM


All times are GMT +1. The time now is 06:49 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"