View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
muddan madhu[_3_] muddan madhu[_3_] is offline
external usenet poster
 
Posts: 15
Default inserting worksheets..!

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


"via135" wrote:

hi!

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

-via135