Hi Friends
I inherited the attached macro to create my monthly job
sheets works great but i have tried in vane to add 2 features and failed.
The macro generates the sheets from 1 to x i would like to input the start
number and also add that number into the job number box cells GHI 6&7 any
help is much appreciated. code shown below
Sub CreateSheetsFromAList()
Dim x As Integer
x = InputBox("Enter number of times to copy master")
For numtimes = 1 To x
ActiveWorkbook.Sheets("sheet1").Copy _
After:=ActiveWorkbook.Sheets("sheet1")
Next
Dim iSheetCount
For iSheetCount = 1 To Sheets.Count
Sheets(iSheetCount).Name = iSheetCount
Next iSheetCount
End Sub
Many thanks to any who can help.
--
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
https://www.facebook.com/discussexcel
FORUM RULES
1) Use concise, accurate thread titles. Poor thread titles, like Please Help,
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
NOTE : Don't ever post confidential data in a workbook. Forum owners and
members are not responsible for any loss.
---
You received this message because you are subscribed to the Google Groups "MS
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.
makeandnamejobs.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12
