Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi there,
wonder if you could help with the following: If you could create a macro which can create tabs according to the number of days of each month, eg 28 tabs for Feb 07, then name it according to the date, eg 01.02.07, and at the same time create one tab acting as an abstract which contains hyperlink to each tab. Sounds really a bit complicated. Your assistance will be much appreciated. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here is the first part:
Sub demo() For i = 1 To 31 v = Format(DateValue("3/" & i & "/2007"), "mm.dd.yyyy") Set sht = Sheets.Add sht.Name = v Next End Sub -- Gary''s Student gsnu200710 "May" wrote: hi there, wonder if you could help with the following: If you could create a macro which can create tabs according to the number of days of each month, eg 28 tabs for Feb 07, then name it according to the date, eg 01.02.07, and at the same time create one tab acting as an abstract which contains hyperlink to each tab. Sounds really a bit complicated. Your assistance will be much appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can we modify any of the ribbon tabs or create new ribbon tabs? | New Users to Excel | |||
Create Tabs | Excel Discussion (Misc queries) | |||
Create Tabs | Excel Discussion (Misc queries) | |||
How do I create a hyperlink to a cell with the hyperlink function | Excel Worksheet Functions | |||
Some tabs not visible in Hyperlink list | Excel Worksheet Functions |