help with header continues

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

ActiveSheet.PageSetup.CenterHeader = "Trend Data for: " &
format(range("C3").value,"mm/dd/yyyy")

In using the above function in vb code, is there a way to have two lines
in the header?
Example
Acme Hospital
Trend Data for 07/21/2003
 
ActiveSheet.PageSetup.CenterHeader = _
"Trend Data for: " & _
VbCr & _
format(range("C3").value,"mm/dd/yyyy")

Regards

Trevor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top