Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Below is some code I am working on. Basically it looks at specific cell A7.
If it is equal to zero then that row gets hidden when printing. I want all rows to unhide after printing. How do I trigger this? The section under Before_Save is what I would like to do after printing. Is there an easier way to do this? Private Sub Workbook_BeforePrint(Cancel As Boolean) Sheets("January").Select If Cells(7, 1) = 0 Then Rows("7:7").EntireRow.Hidden = True End If End Sub Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) Sheets(Array("January", "February", "March", "April", _ "May", "June", "July", "August", "September", _ "October", "November", "December", "Summary")).Select Cells.Select Selection.EntireRow.Hidden = False Sheets("January").Select Cells(1, 1).Select End Sub |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Roedd <<Sloth wedi ysgrifennu:
Below is some code I am working on. Basically it looks at specific cell A7. If it is equal to zero then that row gets hidden when printing. I want all rows to unhide after printing. How do I trigger this? The section under Before_Save is what I would like to do after printing. Is there an easier way to do this? http://www33.brinkster.com/rbad/defa...page=newevents -- Rob Original portions of his message are copyright Robert Bruce and intended for distribution only via NNTP. Dissemination via third party Web forums with the exception of Google Groups and Microsoft Communities is strictly prohibited and may result in legal action. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you so much!!!! That's perfect.
"Robert Bruce" wrote: Roedd <<Sloth wedi ysgrifennu: Below is some code I am working on. Basically it looks at specific cell A7. If it is equal to zero then that row gets hidden when printing. I want all rows to unhide after printing. How do I trigger this? The section under Before_Save is what I would like to do after printing. Is there an easier way to do this? http://www33.brinkster.com/rbad/defa...page=newevents -- Rob Original portions of his message are copyright Robert Bruce and intended for distribution only via NNTP. Dissemination via third party Web forums with the exception of Google Groups and Microsoft Communities is strictly prohibited and may result in legal action. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Triggering a macro after Printing | Excel Programming | |||
Function triggering a macro | Excel Worksheet Functions | |||
Daily Macro Triggering | Excel Discussion (Misc queries) | |||
Triggering Excel Macro from MS-Project | Excel Programming | |||
Triggering Macro Execution | Excel Programming |