Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a macro that prints out several pages at the end of the work week, I
now need to know if there is a way to print a page with the weekly paperwork only if it has a value in a specific field. Any ideas? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If Range("N1").Value = "Yes" Then
Range("A1:N20").PrintOut End If "justaguyfromky" wrote in message ... I have a macro that prints out several pages at the end of the work week, I now need to know if there is a way to print a page with the weekly paperwork only if it has a value in a specific field. Any ideas? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() With Activesheet If .Range("A1").Value = 1 Then .Prin tout End If End WIth -- HTH RP "justaguyfromky" wrote in message ... I have a macro that prints out several pages at the end of the work week, I now need to know if there is a way to print a page with the weekly paperwork only if it has a value in a specific field. Any ideas? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
How to end macro on inital active worksheet containing macro button that was clicked | Excel Programming | |||
macro to delete entire rows when column A is blank ...a quick macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |