#1   Report Post  
Posted to microsoft.public.excel.misc
Lalala
 
Posts: n/a
Default Worksheet tabs

Can you put a date in a worksheet tab and drag it across other tabs to auto
fill consecutive dates? If so, how?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Peo Sjoblom
 
Posts: n/a
Default Worksheet tabs

No, that is not possible


--

Regards,

Peo Sjoblom

http://nwexcelsolutions.com


"Lalala" wrote in message
...
Can you put a date in a worksheet tab and drag it across other tabs to
auto
fill consecutive dates? If so, how?



  #3   Report Post  
Posted to microsoft.public.excel.misc
smart.daisy
 
Posts: n/a
Default Worksheet tabs

EXCEL doesn't support this fuction. You can use belowed code. You have to set
up a list in one of any worksheet in column A1-A31 (or any column you'd
like,don't forget to change below code if you use other columns).I try to use
format like 01012006,01022006,01032006.........not any problem. You have to
setup enough worksheets before you run this code. In this case, you need 32
worksheets.

Sub namesheets()

Dim arr As Variant
arr = Range("a1:a31").Value
For i = LBound(arr) To UBound(arr)
Sheets(i + 1).Activate
Sheets(i).Name = arr(i, 1)
Next i
End Sub


"Lalala" wrote:

Can you put a date in a worksheet tab and drag it across other tabs to auto
fill consecutive dates? If so, how?

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
repeat rows for add'l pages for tabs on a multi-tab worksheet Nancy T. Excel Worksheet Functions 2 January 13th 06 06:35 PM
Worksheet tabs on multiple lines? Bill Y. Excel Worksheet Functions 5 December 12th 05 06:06 PM
Transfer "Tabs name" to a worksheet tunabread Excel Discussion (Misc queries) 4 September 11th 05 06:33 PM
Worksheet Tabs Whitenite Excel Discussion (Misc queries) 1 August 2nd 05 12:11 PM
A "Document Map" of worksheet tabs for Excel BCS Setting up and Configuration of Excel 2 June 22nd 05 01:33 PM


All times are GMT +1. The time now is 05:32 PM.

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"