Creatn multiple sheets in single workbook

G

Guest

Hi, wonder if anyone can help me. I have a Macro that generates a series of
worksheets in a single workbook based upon a sheet in the workbook which
contains a series of numbers. Each sheet contains information relating to the
number found in the first worksheet via a series of look ups.

However the problem relates to how many workbooks I can insert, when I first
developed the macro it ran fine and generated around 750 sheets. Now however
it keep stopping at 186 sheets, and gives an error that it can't create
another sheet, the basis of the macro I am using is :

x = 6 'the numer of sheets to start inserting new ones after

For a = 1 To 1000
Sheets("fap template").Copy After:=Sheets(x)
sh = x + 1
Sheets(sh).Select

'rename sheet and then do series of look ups and populate
Next a
 
G

Guest

Thanks I have now got a series of sheets inserts, however I cant find a away
using sheets.add of selecting the location in a workbook I want the sheet
added, in my original formula I copied the sheets after sheet(x) but cant see
how to add the sheet after sheet x
 
R

Ron de Bruin

Try this

x = 6 'the numer of sheets to start inserting new ones after
For a = 1 To 200
Sheets.Add Type:="C:\aaa.xlt", after:=Sheets(x)
x = x + 1
Next
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top