Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Create Dynamic or Run-time WorkSheets using Macro.

To Create Dynamic or Run-time WorkSheets using Macro, follow the steps mentioned below

Steps:

  • Get the Active WorkBook object
  • Add the worksheets at the run time using Add().Name() method

Get the Active WorkBook object

        Set mainWorkBook = ActiveWorkbook

Add the worksheets at the run time using Add().Name() method

        mainWorkBook.Worksheets.Add().Name = “Sheet Name”

Complete Code:

Sub DynamicWorkSheets()

   Dim mainWorkBook As Workbook

   Set mainWorkBook = ActiveWorkbook

   For i = 1 To 3

   mainWorkBook.Worksheets.Add().Name = "DynamicWS_" & i

   Next

End Sub
Dynamic WorkSheets
Dynamic WorkSheets 



Also Read:

  1. VBA-Excel: Copy/Paste data - Copy the data from a call and paste it to another cell
  2. VBA Excel - Cells, Ranges and Offset: Refer to Cells by Using Shortcut Notation
  3. VBA-Excel: Get all the WeekDays or Working days in Specified Date Range, (excluding Satudays and Sundays)
  4. VBA Excel - Cells, Ranges and Offset: Refer Range by using A1 Notations
  5. VBA-Excel: Copy/Paste data - Copy the Entire row data and paste it to another row