Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open a word outline collapsed to level 1 main headings instead of defa

Status
Not open for further replies.

baneVader

Technical User
May 3, 2011
1
US
I have a word doc in outline mode. When I open it, it is expanded. I want it to open it collapsed all the way down to the 1st level

I need the cookbook version including the macro, where to place it, what to call it, what else to delete, what to declare etc

this is because I'm a newbie, but I have a little experience, just not too much

Thanks

p.s. I think I have word 2007
 
You think you have Word 2007?!?

For what you're after, you could add the following macro to the document's 'This document' module:
Code:
Sub Document_Open()
With ActiveWindow
  .ActivePane.View.Type = wdOutlineView
  .View.ShowHeading 1
End With
End Sub
Should work with any modern version.

Cheers
Paul Edstein
[MS MVP - Word]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top