Hello
What solutions have people used to place Headers & Footers for Landscape oriented pages across the short edge.
I have used text boxes which is fiddly at best. The VBA code to control this becomes a nightmare.
Regards
Geof
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Word, L/scape Headers & Footers
Home » Forums » AskWoody support » Productivity software by function » MS Word and word processing help » Word, L/scape Headers & Footers
- This topic has 3 replies, 4 voices, and was last updated 24 years ago.
AuthorTopicWSgeofrichardson
AskWoody LoungerApril 3, 2001 at 6:14 pm #354644Viewing 2 reply threadsAuthorReplies-
Charles Kenyon
AskWoody LoungerApril 6, 2001 at 3:36 am #521796Hi Geof,
Take a look at Q162235: WD97: How to Add a Portrait Page Number to a Landscape Page.. Hope it helps.
-
WSGary Frieder
AskWoody LoungerApril 6, 2001 at 4:26 am #521800Geof,
Here’s a macro I wrote some time ago (Word 97) to do just that.
Notes:
This inserts a new landscape section at the current insertion point – essentially it splits the current section into two parts, with the new landscape section in the middle – you then need to copy/paste the material intended for the LS section, into the new LS section.The macro relies on inserting an autotext to provide for the sideways page number – this is just a textbox that was tweaked to just the right location and had the text direction changed – you’d have to create your own autotext for this purpose.
I’ve left in (but commented out) the little tests I was using to suss out what was actually going on, when creating this.
Sub InsertLandscapeSection() Dim rCurRng As Range Dim nSectCount As Integer Dim nUserView As Integer 'Gary Frieder 'Posted on Woody's Lounge Word forum 'test to ensure in main doc story and prompt if not If Selection.Information(wdInHeaderFooter) = True Then MsgBox "Insertion Point Must Be In Body of Page" _ & vbCr & "Before Running This Procedure", vbExclamation, _ "Alert: Place Insertion Point in Body of Page" Exit Sub End If On Error GoTo InsertLandscapeSection_err Application.ScreenUpdating = False 'ensure in page view for rest of procedure nUserView = ActiveWindow.View.Type If nUserView wdPageView Then ActiveWindow.View.Type = wdPageView End If With Selection '.TypeText ("I started here") .TypeParagraph Set rCurRng = Selection.Range 'Insert first Section Break .Sections.Add Range:=rCurRng '.TypeText ("Where am I now - 1?") .TypeParagraph .TypeParagraph Set rCurRng = Selection.Range 'Insert 2nd Section Break .Sections.Add Range:=rCurRng '.TypeText ("And Where am I now - 2?") .TypeParagraph .GoTo What:=wdGoToSection, Which:=wdGoToNext, Count:=1, _ Name:="" .TypeText ("Landscape Section") .TypeParagraph End With 'get index of current section nSectCount = Selection.Information(wdActiveEndSectionNumber) 'turn off Same As Previous in header and footer With ActiveDocument.Sections(nSectCount).Headers(wdHeaderFooterPrimary) .LinkToPrevious = False End With With ActiveDocument.Sections(nSectCount).Footers(wdHeaderFooterPrimary) .LinkToPrevious = False .PageNumbers.RestartNumberingAtSection = False End With With Selection .GoTo What:=wdGoToSection, Which:=wdGoToNext, Count:=1, _ Name:="" '.TypeText ("And I ended up here - OK with that?") .TypeParagraph End With 'get index of current section nSectCount = Selection.Information(wdActiveEndSectionNumber) 'turn off Same As Previous in header and footer With ActiveDocument.Sections(nSectCount).Headers(wdHeaderFooterPrimary) .LinkToPrevious = False .PageNumbers.RestartNumberingAtSection = False End With With ActiveDocument.Sections(nSectCount).Footers(wdHeaderFooterPrimary) .LinkToPrevious = False End With 'now go back to LS section to set stuff With Selection .GoTo What:=wdGoToSection, Which:=wdGoToPrevious, Count:=1, _ Name:="" '********Do all this AFTER fixing trailing section LinkToPrev .TypeParagraph With .PageSetup .Orientation = wdOrientLandscape .TopMargin = InchesToPoints(1.0625) .BottomMargin = InchesToPoints(1.0625) .LeftMargin = InchesToPoints(1) .RightMargin = InchesToPoints(1) .HeaderDistance = InchesToPoints(0.5) .FooterDistance = InchesToPoints(0.5) .PageWidth = InchesToPoints(11) .PageHeight = InchesToPoints(8.5) End With End With 'In LS section, Go to header and insert page no Autotext '(get code from earlier version) ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader ActiveDocument.AttachedTemplate.AutoTextEntries("LandscapeSectionPageNumber"). _ Insert Where:=Selection.Range 'go back to main document ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument 'In LS section, Go to footer and delete contents ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter With Selection .WholeStory .Delete End With 'go back to main document ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument '********************************* 'restore original user view If nUserView wdPageView Then ActiveWindow.View.Type = nUserView End If Application.ScreenUpdating = True Exit Sub InsertLandscapeSection_err: Application.ScreenUpdating = True SetBodySectionPageMargins_err: Application.ScreenUpdating = True MsgBox Err.Number & " : " & Err.Description, vbOKOnly, _ "modDTP_PgSet.InsertLandscapeSection" End Sub
-
WSPhil Rabichow
AskWoody LoungerApril 6, 2001 at 3:59 pm #521881Hi Geof:
You can also see this post.
A couple of additional tips that I’ve copied from somewhere regarding landscape sections with portrait header/footers are:
Method 2 (unless you need a footnote):
1. Exchange all the row entries for column entries, so the rows become columns and the columns become rows. (Map each entry table1[i,j] to table2[j,i], for row entries i=1,…,I, and column entries j=1,…,J.)
2. Rotate text direction of all the table entries so now the head of the table is on the left-hand side of the page. [THIS ONLY WORKS IN WORD 97 or later.]So the headers are in the right place at the top of the page, with the head of the table at the left side. But the footnote is at the bottom of the page instead of landscape under the table.
Is there a way of having a footnote appear at the foot of a table instead of the foot of the page?
You can trick Word by copying the header info into a text box and the footer (if needed) into a text box. You can adjust the direction of the text from a textbox and place the “header” textbox on the right side of the page and the footer textbox on the left side. This will show the “top” of the landscape page on the right side of the adjusted portrait page. [AGAIN, ONLY IN 97]You can also use the above method for portrait header/footers with landscape table.
1. Make the table landscape.
2. Disconnect the header/footers on the landscaped pages.
3. Copy the header/footer info into textboxes.
4. Rotate the text in the text boxes. [Can
Viewing 2 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Premium UPVC Windows, Doors & Conservatories in Yorkshire (Awaiting moderation)
by
margiebright
1 hour, 11 minutes ago -
Login issues with Windows Hello
by
CWBillow
2 hours, 54 minutes ago -
How to get into a manual setup screen in 2024 Outlook classic?
by
Tex265
3 hours ago -
Linux : ARMO rootkit “Curing”
by
Alex5723
7 hours, 53 minutes ago -
Employee monitoring app leaks 21 million screenshots in real time
by
Alex5723
7 hours, 59 minutes ago -
Google AI is now hallucinating idioms
by
Alex5723
8 hours, 31 minutes ago -
april update
by
69800
4 hours, 29 minutes ago -
Windows 11 Insider Preview build 27842 released to Canary
by
joep517
9 hours, 25 minutes ago -
Quick Fix for Slowing File Explorer
by
Drcard:))
9 hours, 38 minutes ago -
WuMgr not loading?
by
LHiggins
10 hours, 13 minutes ago -
Word crashes when accessing Help
by
CWBillow
1 hour, 41 minutes ago -
New Microsoft Nag — Danger! Danger! sign-in to your Microsoft Account
by
EricB
9 hours, 16 minutes ago -
Blank Inetpub folder
by
Susan Bradley
6 hours, 41 minutes ago -
Google : Extended Repair Program for Pixel 7a
by
Alex5723
19 hours, 48 minutes ago -
Updates seem to have broken Microsoft Edge
by
rebop2020
6 hours, 13 minutes ago -
Wait command?
by
CWBillow
13 hours, 4 minutes ago -
Malwarebytes 5 Free version manual platform updates
by
Bob99
1 day, 2 hours ago -
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
1 day, 9 hours ago -
Windows 10 finally gets fix
by
Susan Bradley
1 day, 17 hours ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
1 day, 19 hours ago -
How to use Skype after May?
by
Joann
3 hours, 35 minutes ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
1 day, 13 hours ago -
France : A law requiring messaging apps to implement a backdoor ..
by
Alex5723
2 days, 8 hours ago -
Dev runs Windows 11 ARM on an iPad Air M2
by
Alex5723
2 days, 9 hours ago -
MS-DEFCON 3: Cleanup time
by
Susan Bradley
8 hours, 14 minutes ago -
KB5056686 (.NET v8.0.15) Delivered Twice in April 2025
by
lmacri
14 hours, 26 minutes ago -
How to enable Extended Security Maintenance on Ubuntu 20.04 LTS before it dies
by
Alex5723
2 days, 20 hours ago -
Windows 11 Insider Preview build 26200.5562 released to DEV
by
joep517
3 days ago -
Windows 11 Insider Preview build 26120.3872 (24H2) released to BETA
by
joep517
3 days ago -
Unable to eject external hard drives
by
Robertos42
1 day, 10 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.