You can print any worksheet in a workbook.
Applies to: The information in this topic applies to document-level projects and application-level projects for Excel 2007 and Excel 2010. For more information, see Features Available by Office Application and Project Type.
To print a worksheet
-
Call the PrintOut method of Sheet1, request two copies, and preview the document before printing.
Visual BasicGlobals.Sheet1.PrintOut(From:=1, To:=1, Copies:=2, Preview:=True)
C#Globals.Sheet1.PrintOut(1, 1, 2, true, missing, missing, missing, missing);
The PrintPreview method enables you to display the specified object in the Print Preview window. The following code assumes you have a Worksheet host item named Sheet1.
To preview a page before printing
-
Call the PrintPreview method of the worksheet.
Visual BasicGlobals.Sheet1.PrintPreview()
C#Globals.Sheet1.PrintPreview(missing);
To print a worksheet
-
Call the _Worksheet.PrintOut method of the active worksheet, request two copies, and preview the document before printing.
Visual BasicCType(Application.ActiveSheet, Excel.Worksheet).PrintOut _ (From:=1, To:=1, Copies:=2, Preview:=True)
C#((Excel.Worksheet)Application.ActiveSheet).PrintOut (1, 1, 2, true, missing, missing, missing, missing);
The _Worksheet.PrintPreview method enables you to display the specified object in the Print Preview window.
To preview a page before printing
-
Call the _Worksheet.PrintPreview method of the active worksheet.
Visual BasicCType(Application.ActiveSheet, Excel.Worksheet).PrintPreview()C#((Excel.Worksheet)Application.ActiveSheet).PrintPreview(missing);