Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i need to automaticly generate time cards using a name list from the name
sheet and the master timecard sheet so it will put the all the info from the name sheet into the cells of the master and change the tab name to the name on the list so they can input their own times onto the sheet and do this for the names on the list. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Carl,
If I understand you have a list of names on a sheet called names and you want to add a worksheet for each name. Try this which assumes the names are in A1 to A7 so change to suit Sub Add_Sheets() Dim MyRange As Range Set MyRange = Sheets("Names").Range("A1:A7") For Each c In MyRange Worksheets.Add(After:=Worksheets(Worksheets.Count) ).Name = c.Value Next End Sub You will have to give a clearer account of what you want after that. -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Carl" wrote: i need to automaticly generate time cards using a name list from the name sheet and the master timecard sheet so it will put the all the info from the name sheet into the cells of the master and change the tab name to the name on the list so they can input their own times onto the sheet and do this for the names on the list. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Check your other post.
Carl wrote: i need to automaticly generate time cards using a name list from the name sheet and the master timecard sheet so it will put the all the info from the name sheet into the cells of the master and change the tab name to the name on the list so they can input their own times onto the sheet and do this for the names on the list. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Auto generate sheets by different values of a cell. | Excel Discussion (Misc queries) | |||
Connecting a master sheet to other sheets within the same workbook | Excel Discussion (Misc queries) | |||
how do I generate lists in worksheets based on a master list works | Excel Worksheet Functions | |||
Master sheet to split sheets back to another master sheet | Excel Programming | |||
Allocate Files to Sheets and Build a Master Sheet which Summarises All Sheets | Excel Programming |