Logo 
Search:

MS Office Answers

Ask Question   UnAnswered
Home » Forum » MS Office       RSS Feeds
  Question Asked By: Geeske Bakker   on Jan 19 In MS Office Category.

  
Question Answered By: Reginald Thomas   on Jan 19

I'm a bit busy with other things but slapped this together for you. It
should do. Another option is to create  an array, and grab all the names
first instead of going back and forth to the main sheet, but like I said
I'm busy, and this should do the trick.

Dim i As Integer
Dim a As Integer
Dim sName As String
Dim sCurrentSheet As String

Range("A1").Select
sCurrentSheet = ActiveSheet.Name
i = Cells(Rows.Count, 1).End(xlUp).Row

For a = 1 To i
sName = ActiveCell.Offset(a - 1, 0).Value
Worksheets.Add
ActiveSheet.Name = sName
Sheets(sCurrentSheet).Select
Next

Share: 

 

This Question has 4 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on Create Worksheets from List Or get search suggestion and latest updates.


Tagged: