How to keep the same style for a new paragraph in Word

G

Guest

As far as I remember there used to be a modifier for ENTER that would start a
new paragraph but would keep the style of the previous paragraph, overriding
any NEXT STYLE settings in the style definition. Anyone know if that's still
available? Thx.
 
J

Joe McGuire

In Word 2002/2003 open the Modify Style window for that style and look at
Style for following paragraph. Change whatever is in there to the same
style you are using. Thereafter, when you press Enter at the end of a
paragraph of that style to start a new paragraph it should be in the same
style. Make sure you have not set any other formatting for thos paragraphs
manually since it usually take precedence over the style.
 
S

Suzanne S. Barnhill

Pat has suggested a way to start a new line in the *same* paragraph. Though
this is not what you asked, it may be what you're looking for.

There's no built-in way to override (temporarily) the following style set
for a paragraph style, but Bill Coan kindly provided the following macro
that will do it; as the macro name suggests, I have it assigned to the
Alt+Enter shortcut.

Sub AlternateEnter()
'
Dim OriginalStyle As Style
Set OriginalStyle = Selection.Style
Selection.TypeParagraph
Selection.Style = OriginalStyle

End Sub

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
C

Charles Kenyon

I liked the idea so much I put it into my system. I also made the following
variation that I expect to use more often.

Sub AltShiftEnter()
' Apply style for next paragraph to new paragraph broken in middle
' When in middle of paragraph, breaks paragraph and applies style for next
' to the new paragraph
' Assigned to key combination Alt-Shift-Enter
' 24 March 2005
Dim NextStyle As Style
Set NextStyle =
ActiveDocument.Styles(Selection.Style).NextParagraphStyle
Selection.TypeParagraph
Selection.Style = NextStyle
End Sub

I only tested it briefly but it seems to work. I often find that I want to
break a paragraph in the middle and have the style for next paragraph
applied to the new paragraph rather than keeping the original style.
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 
S

Suzanne S. Barnhill

Yes, that would definitely be useful, too.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

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

Top