VBA Print Statement in Excel Last Updated : 29 Oct, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report When there are many columns and rows in excel but we only want to save or print a few of them because that few rows and columns are important to us, at that case we will print them in Excel VBA so that we can fetch those details later and also to get the print out of that table because daily life hard copy of the reports is usually required in the meetings. Syntax: [From]: Starting page of the printout.[TO]: Ending page of the printout.[Copies]: Number of copies of the printout.[Preview]: Before it gets printed if we want to view it then we can mention TRUE otherwise FALSE.PrintOut Method Without its Parameters Suppose, we have data as shown in the following Now, we want to print the report from range A1 to B9. For that, we will mention the range with the PrintOut method. Printout Method With its Parameters Now, we will print two copies of data which will first be shown to us for that we have to assign TRUE to preview the parameter. Parameters of Printout Method Code to print the complete sheet. Code to print the complete sheet with its sheet name. Code to print all the sheets in the workbook. Code to print all the data in the workbook. Code to print the data which are selected. Comment More infoAdvertise with us Next Article VBA Print Statement in Excel A ayushdey110 Follow Improve Article Tags : Excel Excel-VBA ExcelGuide Similar Reads VBA Multiple (Nested) If Statements in Excel VBA in Excel stands for Visual Basic for Applications, which is Microsoft's programming language. To optimize the performance and reduce the time in Excel we need Macros and VBA is the tool used in the backend. What decision-making reasoning do you often use in your Excel worksheets? In most circums 5 min read VBA Strings in Excel In Excel's Visual Basic for Applications(VBA), strings are pivotal in handling and manipulating text-based data. Strings serve as a fundamental data type used to store a sequence of characters, enabling the representation of textual information, numbers, symbols, and more. Understanding how VBA hand 8 min read How to use If-Else Statement in Excel VBA? VBA in Excel stands for Visual Basic for Applications which is Microsoft's programming language. To optimize the performance and reduce the time in Excel we need Macros and VBA is the tool used in the backend. In this article, we are going to learn how to use the If Else statement in Excel VBA. Impl 3 min read VBA IF Statement VBA in Excel stands for Visual Basic for Applications which is Microsoft's programming language. To optimize the performance and reduce the time in Excel we need Macros and VBA is the tool used in the backend. In this article, we are going to use how to use the If statement in Excel VBA. Implementat 8 min read Excel VBA | sum() functions Visual Basic for Applications (VBA) is the programming language of Excel and other offices. It is an event-driven programming language from Microsoft. With Excel VBA one can automate many tasks in excel and all other office software. It helps in generating reports, preparing various charts, graphs a 2 min read Like