View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Printer Set Up in VBA

Hi PostalVote

Try this

It will add a sheet to your workbook
And use cell A1 if the activesheet in the footer (or header)

Sub test()
Dim Aws As Worksheet
Dim Nws As Worksheet

Set Aws = ActiveSheet
Set Nws = Worksheets.Add

With Nws
.PageSetup.LeftFooter = Aws.Range("a1").Value
End With
End Sub


--
Regards Ron de Bruin
http://www.rondebruin.nl


"PostalVote " wrote in message ...
Hi

I am rather new to this so any advice is greatly appreciated.

I am trying to set up a macro which creates a sheet for the user based
on their input. My main stumbling block is entering the required text
as a header in the print-page set up.

I would like to be able to take a string of text from a cell reference
and use it ( or part of it) as a title for the document.

I have been working on this for without success for sometime now.

Thanks in advance
Mike


---
Message posted from http://www.ExcelForum.com/