Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can you put a date in a worksheet tab and drag it across other tabs to auto
fill consecutive dates? If so, how? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
repeat rows for add'l pages for tabs on a multi-tab worksheet | Excel Worksheet Functions | |||
Worksheet tabs on multiple lines? | Excel Worksheet Functions | |||
Transfer "Tabs name" to a worksheet | Excel Discussion (Misc queries) | |||
Worksheet Tabs | Excel Discussion (Misc queries) | |||
A "Document Map" of worksheet tabs for Excel | Setting up and Configuration of Excel |