Article ID: 107622 - Last Review: October 11, 2006 - Revision: 2.2 How To Add a Sheet After Last Sheet in a Single ActionThis article was previously published under Q107622 On This PageSUMMARY
In the versions of Microsoft Excel listed at the beginning of this article,
it is not possible to add a new sheet after the last sheet in the workbook
in a single action. For example, if you have a workbook that contains
Sheet1 and Sheet2 (in left-to-right sheet tab order), you cannot add a new
sheet to the right of Sheet2.
This applies whether you add the new sheet manually, by using Visual Basic code, or by using XLM macro code. It is possible to add a new sheet to a workbook and make the sheet become the last sheet in the workbook, but at least two separate actions are required to do this. MORE INFORMATION
If your application requires that a new sheet be added or inserted after
the last sheet in the workbook, there are two ways that you can achieve
this task:
Visual Basic Code ExampleMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. This sample Visual Basic code inserts a new sheet into a workbook and makes the new sheet become the last sheet in the workbook by moving it to the right of the rightmost sheet. This example assumes you have a workbook that contains at least one Visual Basic module and any number of other sheets.To run the example, position the cursor in the line that reads "Sub AddNewSheet()" and either press F5 or click Start on the Run menu. If you try to add a new sheet after the last sheet in the workbook, all in a single action, you will receive the following error message:
Add method of Sheet class failed
| Article Translations
|

Back to the top
