Stop bullets elsewhere changing

P

Peter Fraser

I write quite long documents (50 to 60 sides) using Word 2007. I quit
often need to use formatting such as bullets or numbering. However,
note that changing bullets on one page changes a whole bunch of bullet
(or even removes them completely) elsewhere. I can't see thi
immediately as I am on one page while the changes are elsewhere. Ho
can I stop Word from doing this? I know that sometimes control-z get
rid of surplus formatting but I surely don't need to do this ever
time?

I have tried to look at some pages explaining bulleting in word - the
make little sense to me. All I want to do is to change the formattin
on one page without messing anything else up. Why does Word seem t
want to change styles affecting the whole document when you only wan
to change the text in question
 
P

Peter Fraser

Thanks for this. Is there any way to stop all styles from updatin
rather than one at a time?



'Stefan Blom[_3_ said:
;468083']Se
http://word.mvps.org/FAQs/Formatting/WholeDocumentReformatted.htm.

--
Stefan Blom
Microsoft Word MVP
(Message posted via NNTP)



"Peter Fraser" (e-mail address removed) wrote in message

I write quite long documents (50 to 60 sides) using Word 2007.
quite
often need to use formatting such as bullets or numbering. However, I
note that changing bullets on one page changes a whole bunch o
bullets
(or even removes them completely) elsewhere. I can't see this
immediately as I am on one page while the changes are elsewhere. How
can I stop Word from doing this? I know that sometimes control-z gets
rid of surplus formatting but I surely don't need to do this every
time?

I have tried to look at some pages explaining bulleting in word
they
make little sense to me. All I want to do is to change the formatting
on one page without messing anything else up. Why does Word seem to
want to change styles affecting the whole document when you only want
to change the text in question?
 
S

Suzanne S. Barnhill

Most styles are based on Normal. If Normal has somehow been changed to
update automatically, then this setting may be propagated to the rest. In
theory, changing Normal would change the styles dependent on it, but in
practice this seems to affect only previously unused styles, so it's no help
for styles in existing text.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

Peter Fraser said:
Thanks for this. Is there any way to stop all styles from updating
rather than one at a time?



'Stefan Blom[_3_ said:
;468083']See
http://word.mvps.org/FAQs/Formatting/WholeDocumentReformatted.htm.

--
Stefan Blom
Microsoft Word MVP
(Message posted via NNTP)



"Peter Fraser" (e-mail address removed) wrote in message

I write quite long documents (50 to 60 sides) using Word 2007. I
quite
often need to use formatting such as bullets or numbering. However, I
note that changing bullets on one page changes a whole bunch of
bullets
(or even removes them completely) elsewhere. I can't see this
immediately as I am on one page while the changes are elsewhere. How
can I stop Word from doing this? I know that sometimes control-z gets
rid of surplus formatting but I surely don't need to do this every
time?

I have tried to look at some pages explaining bulleting in word -
they
make little sense to me. All I want to do is to change the formatting
on one page without messing anything else up. Why does Word seem to
want to change styles affecting the whole document when you only want
to change the text in question?
 
S

Stefan Blom

To turn off Automatically update for all paragraph styles in a document, you can
run the following macro:

Sub TurnOffAutoUpdate()
Dim s As Style
For Each s In ActiveDocument.Styles
If s.Type = wdStyleTypeParagraph Or _
s.Type = wdStyleTypeParagraphOnly Then

s.AutomaticallyUpdate = False

End If

Next s
End Sub

For assistance, see http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP
(Message posted via NNTP)



Suzanne S. Barnhill said:
Most styles are based on Normal. If Normal has somehow been changed to update
automatically, then this setting may be propagated to the rest. In theory,
changing Normal would change the styles dependent on it, but in practice this
seems to affect only previously unused styles, so it's no help for styles in
existing text.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

Peter Fraser said:
Thanks for this. Is there any way to stop all styles from updating
rather than one at a time?



'Stefan Blom[_3_ said:
;468083']See
http://word.mvps.org/FAQs/Formatting/WholeDocumentReformatted.htm.

--
Stefan Blom
Microsoft Word MVP
(Message posted via NNTP)



"Peter Fraser" (e-mail address removed) wrote in message

I write quite long documents (50 to 60 sides) using Word 2007. I
quite
often need to use formatting such as bullets or numbering. However, I
note that changing bullets on one page changes a whole bunch of
bullets
(or even removes them completely) elsewhere. I can't see this
immediately as I am on one page while the changes are elsewhere. How
can I stop Word from doing this? I know that sometimes control-z gets
rid of surplus formatting but I surely don't need to do this every
time?

I have tried to look at some pages explaining bulleting in word -
they
make little sense to me. All I want to do is to change the formatting
on one page without messing anything else up. Why does Word seem to
want to change styles affecting the whole document when you only want
to change the text in question?
 

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