Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a document with 11 different sheets in it. If a qty is entered on any
of the sheets I would like it to be included in the group to be printed. Is there a function to print sheets with changes from the "template" that I have created? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could use a macro. For example, if cell A1 has the "qty" of interest:
Sub PrintSheets() Dim mySht As Worksheet For Each mySht In ActiveWorkbook.Worksheets If mySht.Range("A1").Value < "" Then mySht.PrintOut Next mySht End Sub HTH, Bernie MS Excel MVP "jerminski73" wrote in message ... I have a document with 11 different sheets in it. If a qty is entered on any of the sheets I would like it to be included in the group to be printed. Is there a function to print sheets with changes from the "template" that I have created? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Wow, that should have actually worked well, all of the pricing pages have a
value in the same cell that changes as they are bidding different material types, however, after I set the cell to AI8 (each page totals in AI8) I ran the macro and got my master pricing sheet of 10 pgs and two other sheets with no value in AI8. I changed A1 to AI8 and < "" to < "0" |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Printing spreadsheets with values entered (group) | Excel Discussion (Misc queries) | |||
printing group of charts | Charts and Charting in Excel | |||
How can I convert a group of numbers to a group of letters? | Excel Worksheet Functions | |||
Taking age group Ie ages 20-29 and picking out net sales for group | Excel Worksheet Functions | |||
How do I group worksheets (Lotus 123 function is "Sheet>Group Shee | Excel Worksheet Functions |