insert a page heading before sheet prints

fenster

Board Regular
Joined
Nov 11, 2002
Messages
98
hi guys ,

i have this code that prints a range from a sheet :

Sheets("voucher").Select
Cells.Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Range("A6").Select

theres another bit of code before this one that does the filtering:

' dim start/end date
Dim StartDate As Long
Dim EndDate As Long

' set start/end date cells
StartDate = CLng(Range("D4").Value)
EndDate = CLng(Range("G4").Value)

'filter sheet with records needed
Sheets("Voucher").Select
Columns("A:A").Select
Range("A7:A3101").Select
Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:=">=" & StartDate, Operator:=xlAnd _
, Criteria2:="<=" & EndDate


what i want is a heading at the top of the page to say :

filtered results from (sheet) : date range (startdate) - (enddate)

this is my first post for a while - just when i thought i was getting on top of vba!

davie.
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
am i explaining my problem correctly?

always a worry when i get lots of views but no posts..

or is there a command to insert a line of text on printout like what i require?
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,251
Members
448,556
Latest member
peterhess2002

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top