
The following routine will look at the contents of a single column set up Excel worksheets within the current workbook with these names. VBA Programming | Code Generator does work for you! Create Worksheets From List of Names You might want to create a sheet only if it doesn’t already exist. This code assigns the new Sheet to a variable as the sheet is created: Dim ws As Worksheetįrom here you can reference the new sheet with the variable ‘ws’: ws.name = "VarSheet" More Add Sheet Examples Create Sheet if it Doesn’t Already Exist To add a Sheet to the beginning of the workbook: Sheets.Add(Before:=Sheets(1)).Name = "FirstSheet" Add Sheet to Variable To add a Sheet to the end of the workbook: Sheets.Add After:=Sheets(Sheets.Count) Add Sheet To Beginning of Workbook:

Often you’ll want to use the Sheet Index number instead, so that you can insert the sheet to the beginning or end of the Workbook: Add Sheet To End of Workbook In these examples we explicitly named the Sheet used to determine the sheet location. Or Before: Sheets.Add(Before:=Sheets("Input")).Name = "NewSheet" Notice the extra parenthesis required in the second example (the first example will generate an error if the second parenthesis are added). This will insert a new Sheet AFTER another sheet and specify the Sheet name: Sheets.Add(After:=Sheets("Input")).Name = "NewSheet" This code will insert the new sheet AFTER another sheet: Sheets.Add After:=Sheets("Input") You can use the After or Before properties to insert a sheet to a specific location in the workbook. You might also want to choose the location of where the new Sheet will be inserted. Or use a cell value to name a new Sheet: = range("a3").value Add Sheet Before / After Another Sheet
