Home |
Search |
Today's Posts |
#13
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I got it fixed. Here is the code that worked. I recorded a marco to add the
Header/Footnote then adapted it for my use. Notice there is no vbNewLine or anything like that. Not sure why it works, but it does. Thanks for all your help. Dim sh As Integer For sh = 1 To Sheets.Count With Sheets(sh).PageSetup .LeftHeader = "&8Cilli Code: " & CLLI_Code_1.Value & Chr(10) & "Office Name: " & Me.Office_1.Value .CenterHeader = "&8TEO Number: " & Me.TEO_No_1.Value & Chr(10) & "Supplier Order No: " & Me.CES_No_1.Value .RightHeader = "&8Page &N of &N" & Chr(10) & "Appendix No: " & Me.TEO_Appx_No_2.Value .CenterFooter = _ "&8RESTRICTED - PROPRIETARY INFORMATION" & Chr(10) & "Not for use or Disclosure outside ATT except under Written Agreement" .LeftMargin = Application.InchesToPoints(0.25) .RightMargin = Application.InchesToPoints(0.25) .TopMargin = Application.InchesToPoints(0.55) .BottomMargin = Application.InchesToPoints(0.7) .HeaderMargin = Application.InchesToPoints(0.25) .FooterMargin = Application.InchesToPoints(0.25) .PrintHeadings = False .PrintGridlines = False .PrintComments = xlPrintNoComments .PrintQuality = -3 .CenterHorizontally = True .CenterVertically = True .Draft = False .PaperSize = xlPaperLetter .FirstPageNumber = xlAutomatic .Order = xlDownThenOver .BlackAndWhite = False .Zoom = 100 .PrintErrors = xlPrintErrorsDisplayed .OddAndEvenPagesHeaderFooter = False .DifferentFirstPageHeaderFooter = False .ScaleWithDocHeaderFooter = True .AlignMarginsHeaderFooter = True End With Next sh End Sub "joel" wrote: Try instead of vbnewline vbcrlf or vbcr or vblf -- joel ------------------------------------------------------------------------ joel's Profile: 229 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=165166 Microsoft Office Help . |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Wookbook Update from User Form | Excel Programming | |||
Update user form labels | Excel Programming | |||
User Form: Cannot Update Text Box | Excel Discussion (Misc queries) | |||
Update Range from User Form | Excel Programming | |||
Find and Update with User Form | Excel Programming |