Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is it possible to print consecutive dates on each new page printed? I made a
form for my business that I print out and write on manually, but I have to fill in the new date everyday. I would like to print multiples of this form with each new form printed to have a new date on it without having to print them one page at a time. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could create a macro:
Option Explicit Sub testme() Dim iCtr As Long Dim myDate As Date myDate = Date ' or give it a starting date dateserial(2007,1,22) With Worksheets("sheet1") For iCtr = 1 To 5 .Range("a1").Value = myDate .PrintOut preview:=True myDate = myDate + 1 Next iCtr End With End Sub This puts the date in A1 of Sheet1 and prints it 5 times. Bradford88 wrote: Is it possible to print consecutive dates on each new page printed? I made a form for my business that I print out and write on manually, but I have to fill in the new date everyday. I would like to print multiples of this form with each new form printed to have a new date on it without having to print them one page at a time. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pre-1900 dates | Excel Discussion (Misc queries) | |||
Printing dates on 1 spreadsheet | Excel Discussion (Misc queries) | |||
Calculating number of days between two dates that fall between two other dates | Excel Discussion (Misc queries) | |||
Page #s and bottom corner dates have disappeared in printing. | Excel Discussion (Misc queries) | |||
2 digit year in dates return 19xx not 20xx | Excel Discussion (Misc queries) |