Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One more...
Option Explicit Sub testme() Dim myDate As Long Dim iCtr As Long myDate = Application.InputBox(prompt:="Enter a date", _ Default:=Format(Date, "mmmm dd, yyyy"), Type:=1) 'minor testing If Year(myDate) < 2007 _ And Year(myDate) 2020 Then MsgBox "Only between 2007 and 2020" Exit Sub End If For iCtr = myDate + 26 To myDate Step -1 Worksheets.Add.Name = Format(iCtr, "yyyy-mm-dd") Next iCtr End Sub I like to use application.inputbox() with type:=1. It only allows the user to enter a number (and dates are numbers). KevinPinDC wrote: I am setting up a daily cash settlement. I created a master sheet to be used everyday. I am attempting to write a macro (Start New Period) that will ask the user to input the first date of the period; then the macro should create 27 new worksheets (one for each day in the period) and proceed to rename them sequentially by date starting with the date entered into the input box. The part I am having trouble with is the line for renaming the sheet. I've tried differing syntax but haven't gotten it right yet. How do I complete the line with a variable name? activsheet.name:= DT step 1 where DT = the date entered into the input box. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to Create New Date Tabs in Worksheet | Excel Programming | |||
Running a variable macro when any value is entered into a variable cell | Excel Programming | |||
Define worksheet as variable, then call in macro | Excel Programming | |||
macro to sort data in worksheet by specific date | Excel Discussion (Misc queries) | |||
Macro Creating Variable and using variable in a SQL statement | Excel Programming |