inserting worksheets..!

  • Thread starter Thread starter via135
  • Start date Start date
V

via135

hi!

is there any way to insert any number of worksheets i wish
at different times..?!

-via135
 
try this macro

Sub insert_sheet()
inrtsh = InputBox("Enter numbers to insert sheets")
For i = 1 To inrtsh
Sheets.Add
ActiveSheet.Name = i
Next
End Sub
 

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

Back
Top