Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
May May is offline
external usenet poster
 
Posts: 15
Default create tabs and add hyperlink to each tab

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default create tabs and add hyperlink to each tab

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can we modify any of the ribbon tabs or create new ribbon tabs? Scott Sornberger New Users to Excel 2 March 19th 08 11:41 AM
Create Tabs David T Excel Discussion (Misc queries) 3 March 28th 07 03:01 PM
Create Tabs Mike Excel Discussion (Misc queries) 0 March 28th 07 01:13 AM
How do I create a hyperlink to a cell with the hyperlink function S. Bevins Excel Worksheet Functions 2 July 20th 06 08:06 PM
Some tabs not visible in Hyperlink list Stilla Excel Worksheet Functions 0 February 7th 06 06:48 PM


All times are GMT +1. The time now is 03:00 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"