Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 252
Default Triggering a macro after Printing

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 108
Default Triggering a macro after Printing

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 252
Default Triggering a macro after Printing

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
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
Triggering a macro after Printing Jim Thomlinson[_5_] Excel Programming 0 February 6th 06 09:33 PM
Function triggering a macro Leon Excel Worksheet Functions 1 December 22nd 05 07:26 AM
Daily Macro Triggering JB2010 Excel Discussion (Misc queries) 2 November 2nd 05 04:28 PM
Triggering Excel Macro from MS-Project Buster Excel Programming 2 November 20th 04 11:35 AM
Triggering Macro Execution Peter M[_3_] Excel Programming 1 January 12th 04 08:20 PM


All times are GMT +1. The time now is 05:46 PM.

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

About Us

"It's about Microsoft Excel"