Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hope someone can help.
I have a workbook with quite a few sheets. Is it possible to write an if formula where, if a certain cell on the sheet 0, the whole sheet should be printed? Can I then write a macro where it tests all the sheets in the workbook? |
#2
![]() |
|||
|
|||
![]()
Hi
Formulas/Functions can't invoke any activities, you must use a procedure/macro for it. -- When sending mail, use address arvil<attarkon.ee Arvi Laanemets "CC" wrote in message ... Hope someone can help. I have a workbook with quite a few sheets. Is it possible to write an if formula where, if a certain cell on the sheet 0, the whole sheet should be printed? Can I then write a macro where it tests all the sheets in the workbook? |
#3
![]() |
|||
|
|||
![]()
Hi
you can't use a formula for this, but you can use a macro to cycle through all the worksheets testing the value of a cell and then printing that sheet, e.g. Sub cyclethroughws() Dim ws As Worksheet For Each ws In Worksheets If ws.Range("A1").Value 0 Then 'change the cell reference as needed. ws.PrintOut MsgBox "printed " & ws.Name End If Next ws End Sub --- to use this code, right mouse click on a sheet tab and choose view code from the menu choose insert / module copy & paste the code onto the right hand side of the screen if any lines go red, click and the end of the line and press the delete key - this should fix line wrap problems then use ALT & F11 to switch back to your workbook choose tools / macro / macros - look for the one that says "cyclethroughws" and press the RUN button Hope this helps Cheers JulieD "CC" wrote in message ... Hope someone can help. I have a workbook with quite a few sheets. Is it possible to write an if formula where, if a certain cell on the sheet 0, the whole sheet should be printed? Can I then write a macro where it tests all the sheets in the workbook? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Printing - Have to set print area 1 column further than necessary | Excel Discussion (Misc queries) | |||
revert formula insertion to old method | Setting up and Configuration of Excel | |||
Relative Indirect Formula Referencing? | Excel Worksheet Functions | |||
Help with macro formula and variable | Excel Worksheet Functions | |||
Cell doesn't show formula result - it shows formula (CTRL + ' doe. | Excel Worksheet Functions |